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

39 lines
1.1 KiB
C++
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#include"VitaminSoft.h"
namespace{
bool _1(){
//どうしていじってプリンセスFinalRoadもうまたこんなところで3
bool ok=false;
for(auto addr:findiatcallormov_all((DWORD)ExtTextOutA,processStartAddress,processStartAddress,processStopAddress,PAGE_EXECUTE)){
addr = MemDbg::findEnclosingAlignedFunction(addr);
if (!addr) continue;
HookParam hp;
hp.address = addr;
hp.offset=get_stack(3);
hp.type = DATA_INDIRECT;
hp.index = 0;
ok|=NewHook(hp, "VitaminSoft");
}
return ok;
}
bool _2(){
//ねとって女神
//ねとって女神 NEO
bool ok=false;
for(auto addr:findiatcallormov_all((DWORD)TextOutA,processStartAddress,processStartAddress,processStopAddress,PAGE_EXECUTE)){
addr = MemDbg::findEnclosingAlignedFunction(addr);
if (!addr) continue;
HookParam hp;
hp.address = addr;
hp.offset=get_stack(1);
hp.type = USING_STRING;
ok|=NewHook(hp, "VitaminSoft");
}
return ok;
}
}
bool VitaminSoft::attach_function(){
return _2()||_1();
}