LunaHook-mirror/LunaHook/engine32/Xbangbang.cpp
恍兮惚兮 e84af745ca issues/20
2024-04-25 18:09:46 +08:00

17 lines
513 B
C++

#include"Xbangbang.h"
bool Xbangbang::attach_function() {
//さわさわ絵にっき
//さわさわ絵にっき2
bool ok=false;
for(auto addr:findiatcallormov_all((DWORD)GetTextExtentPoint32A,processStartAddress,processStartAddress,processStopAddress,PAGE_EXECUTE)){
addr = MemDbg::findEnclosingAlignedFunction(addr);
if (!addr) continue;
HookParam hp;
hp.address = addr;
hp.offset=get_stack(2);
hp.type=USING_STRING;
ok|=NewHook(hp, "Xbangbang");
}
return ok;
}