MCPcopy Create free account
hub / github.com/SpecialKO/SpecialK / SK_GetModuleFullNameFromAddr

Function SK_GetModuleFullNameFromAddr

src/utility.cpp:905–916  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

903}
904
905std::wstring
906SK_GetModuleFullNameFromAddr (LPCVOID addr)
907{
908 HMODULE hModOut =
909 SK_GetModuleFromAddr (addr);
910
911 if (hModOut != INVALID_HANDLE_VALUE && (intptr_t)hModOut > 0)
912 return SK_GetModuleFullName (hModOut);
913
914 return
915 L"#Extremely#Invalid.dll#";
916}
917
918std::wstring
919SK_MakePrettyAddress (LPCVOID addr, DWORD /*dwFlags*/)

Callers 7

SK_MakePrettyAddressFunction · 0.85
SK_Hook_ResolveTargetFunction · 0.85
ZwCreateThreadEx_DetourFunction · 0.85
NtCreateThreadEx_DetourFunction · 0.85

Calls 2

SK_GetModuleFullNameFunction · 0.85
SK_GetModuleFromAddrFunction · 0.70

Tested by

no test coverage detected