LunaHook-mirror/LunaHook/engine32/Jellyfish.h

25 lines
519 B
C
Raw Permalink Normal View History

2024-05-06 23:30:27 +08:00
2024-02-07 20:59:24 +08:00
2024-07-28 01:34:40 +08:00
class Jellyfish : public ENGINE
{
public:
HMODULE ism;
DWORD minaddr, maxaddr;
Jellyfish()
{
is_engine_certain = false;
check_by = CHECK_BY::CUSTOM;
check_by_target = [this]()
{
ism = GetModuleHandle(L"ism.dll");
return ism;
};
// check_by_list{L"ism.dll"};//,L"data.isa"};
2024-02-07 20:59:24 +08:00
};
2024-07-28 01:34:40 +08:00
bool attach_function();
bool Jellyfish_attach_function();
bool Jellyfish_attach_function2();
bool Jellyfish_attach_function3();
2024-02-07 20:59:24 +08:00
};