mirror of
https://github.com/HIllya51/LunaHook.git
synced 2024-12-28 06:04:12 +08:00
25 lines
361 B
C++
25 lines
361 B
C++
|
|
|
|
class ApricoT : public ENGINE
|
|
{
|
|
public:
|
|
ApricoT()
|
|
{
|
|
|
|
check_by = CHECK_BY::FILE;
|
|
check_by_target = L"arc.a*";
|
|
};
|
|
bool attach_function();
|
|
};
|
|
|
|
class ApricoTlast : public ApricoT
|
|
{
|
|
public:
|
|
ApricoTlast()
|
|
{
|
|
|
|
check_by = CHECK_BY::FILE;
|
|
check_by_target = L"arc.dat";
|
|
is_engine_certain = false;
|
|
};
|
|
}; |