mirror of
https://github.com/HIllya51/LunaTranslator.git
synced 2025-01-06 12:34:12 +08:00
58 lines
1.3 KiB
C++
58 lines
1.3 KiB
C++
#include "mono.h"
|
|
#include "mono/monocommon.hpp"
|
|
|
|
bool monobdwgc()
|
|
{
|
|
|
|
HMODULE module = GetModuleHandleW(L"mono-2.0-bdwgc.dll");
|
|
if (module == 0)
|
|
return false;
|
|
auto [minAddress, maxAddress] = Util::QueryModuleLimits(module);
|
|
BYTE bytes[] = {
|
|
0x3D, 0x00, 0x00, 0x01, 0x00,
|
|
0x73, XX,
|
|
0xb8, 0x03, 0x00, 0x00, 0x00,
|
|
0xEB, XX};
|
|
auto addrs = Util::SearchMemory(bytes, sizeof(bytes), PAGE_EXECUTE, minAddress, maxAddress);
|
|
auto succ = false;
|
|
for (auto addr : addrs)
|
|
{
|
|
ConsoleOutput("monobdwgcdll %p", addr);
|
|
HookParam hp;
|
|
hp.address = (DWORD)addr;
|
|
hp.offset = get_reg(regs::eax);
|
|
hp.type = CODEC_UTF16 | NO_CONTEXT;
|
|
succ |= NewHook(hp, "monobdwgcdll");
|
|
}
|
|
return succ;
|
|
}
|
|
bool monodll()
|
|
{
|
|
|
|
HMODULE module = GetModuleHandleW(L"mono.dll");
|
|
if (module == 0)
|
|
return false;
|
|
auto [minAddress, maxAddress] = Util::QueryModuleLimits(module);
|
|
BYTE bytes[] = {
|
|
0x81, 0xFB, XX4,
|
|
0x73};
|
|
auto addrs = Util::SearchMemory(bytes, sizeof(bytes), PAGE_EXECUTE, minAddress, maxAddress);
|
|
auto succ = false;
|
|
for (auto addr : addrs)
|
|
{
|
|
ConsoleOutput("monodll %p", addr);
|
|
HookParam hp;
|
|
hp.address = (DWORD)addr;
|
|
hp.offset = get_reg(regs::ebx);
|
|
hp.type = CODEC_UTF16 | NO_CONTEXT;
|
|
succ |= NewHook(hp, "monodll");
|
|
}
|
|
return succ;
|
|
}
|
|
|
|
bool mono::attach_function_()
|
|
{
|
|
|
|
bool common = monocommon::hook_mono_il2cpp();
|
|
return common;
|
|
} |