mirror of
https://github.com/HIllya51/LunaHook.git
synced 2024-11-24 06:15:35 +08:00
21 lines
361 B
C++
21 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;
|
|
};
|
|
}; |