MCPcopy Create free account
hub / github.com/NullTerminatorr/NullHook / get_system_module_export

Function get_system_module_export

KernelCheatYT/memory.cpp:40–48  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

38}
39
40PVOID get_system_module_export(const char* module_name, LPCSTR routine_name)
41{
42 PVOID lpModule = get_system_module_base(module_name);
43
44 if (!lpModule)
45 return NULL;
46
47 return RtlFindExportedRoutineByName(lpModule, routine_name);
48}
49
50PVOID get_system_routine_address(PCWSTR routine_name)
51{

Callers 1

call_kernel_functionMethod · 0.85

Calls 2

get_system_module_baseFunction · 0.85

Tested by

no test coverage detected