mirror of
https://github.com/HIllya51/LunaHook.git
synced 2024-11-23 22:05:36 +08:00
16 lines
489 B
C
16 lines
489 B
C
|
#include"engine.h"
|
||
|
|
||
|
class NeXAS:public ENGINE{
|
||
|
public:
|
||
|
NeXAS(){
|
||
|
|
||
|
check_by=CHECK_BY::FILE_ALL;
|
||
|
check_by_target=check_by_list{L"*.pac",L"Thumbnail.pac"};
|
||
|
// jichi 6/3/2014: AMUSE CRAFT and SOFTPAL
|
||
|
// Selectively insert, so that lstrlenA can still get correct text if failed
|
||
|
//if (Util::CheckFile(L"dll\\resource.dll") && Util::CheckFile(L"dll\\pal.dll") && InsertAmuseCraftHook())
|
||
|
// return true;
|
||
|
};
|
||
|
bool attach_function();
|
||
|
};
|