mirror of
https://github.com/HIllya51/LunaTranslator.git
synced 2025-01-01 10:04:12 +08:00
9 lines
241 B
C++
9 lines
241 B
C++
#include"tamasoft.h"
|
|
bool tamasoft::attach_function() {
|
|
HookParam hp;
|
|
hp.address=(DWORD)TextOutA;
|
|
hp.offset=stackoffset(4);
|
|
hp.split=stackoffset(4);
|
|
hp.type=USING_STRING|USING_SPLIT;
|
|
return NewHook(hp,"tamasoft");
|
|
}
|