mirror of
https://github.com/HIllya51/LunaHook.git
synced 2024-11-24 06:15:35 +08:00
18 lines
380 B
C
18 lines
380 B
C
|
#include"engine.h"
|
||
|
|
||
|
class CMVS:public ENGINE{
|
||
|
public:
|
||
|
CMVS(){
|
||
|
|
||
|
check_by=CHECK_BY::FILE;
|
||
|
check_by_target=L"data\\pack\\*.cpz";
|
||
|
|
||
|
|
||
|
// jichi 8/19/2013: DO NOT WORK for games like「ハピメア」
|
||
|
//if (wcsstr(str,L"cmvs32") || wcsstr(str,L"cmvs64")) {
|
||
|
// InsertCMVSHook();
|
||
|
// return true;
|
||
|
//}
|
||
|
};
|
||
|
bool attach_function();
|
||
|
};
|