mirror of
https://github.com/HIllya51/LunaHook.git
synced 2024-11-23 22:05:36 +08:00
16 lines
475 B
C++
16 lines
475 B
C++
#include"engine.h"
|
|
|
|
#define LCSE_0 "[0]" // pseudo separator
|
|
#define LCSE_0W L"[0]" // pseudo separator
|
|
class LCScript:public ENGINE{
|
|
public:
|
|
LCScript(){
|
|
|
|
check_by=CHECK_BY::CUSTOM;
|
|
// jichi 3/19/2014: LC-ScriptEngine, GetGlyphOutlineA
|
|
check_by_target=[](){
|
|
return (wcsstr(processName, L"lcsebody") || !wcsncmp(processName, L"lcsebo~", 7) || Util::CheckFile(L"lcsebody*"));
|
|
};
|
|
};
|
|
bool attach_function();
|
|
}; |