LunaHook-mirror/LunaHook/engines/mono/monoil2cpp.h

7 lines
391 B
C
Raw Normal View History

2024-05-14 20:37:48 +08:00
#define RESOLVE_IMPORT(name) name = (decltype(name))(GetProcAddress(game_module, #name))
2024-10-26 02:23:45 +08:00
void commonsolvemonostring(uintptr_t offset, uintptr_t *data, size_t *len);
2024-05-14 20:37:48 +08:00
2024-10-26 02:23:45 +08:00
void unity_ui_string_hook_after(uintptr_t *offset, void *data, size_t len);
2024-05-14 20:37:48 +08:00
2024-10-26 02:23:45 +08:00
uintptr_t tryfindmonoil2cpp(const char *_dll, const char *_namespace, const char *_class, const char *_method, int paramCoun, bool strict = false);