diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2019-09-24 21:15:53 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2019-09-24 21:15:53 +0200 |
commit | 8f43f50ee7d0fca67b745a91d2306d46ea4726cd (patch) | |
tree | 260a71706b07d957a10d76082382db5df02a7add /include | |
parent | ed0e93a3f863eb21cf7bc1c43ce529a7f8a82aec (diff) |
added own DLL get proc address by LoadLibrary and GetProcAddress (maybe used in the future to find symbols)
Diffstat (limited to 'include')
-rw-r--r-- | include/DLLHelper.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/DLLHelper.h b/include/DLLHelper.h index 7fdff37..70058f2 100644 --- a/include/DLLHelper.h +++ b/include/DLLHelper.h @@ -38,6 +38,13 @@ public: UINT64 GetBaseAddress() { return (UINT64)m_TargetBaseAddress; } + UINT64 GetDllProcAddress(const char * const proc_name) { + HMODULE hBase = LoadLibraryA(m_DLLPath.c_str()); + FARPROC hEntry = GetProcAddress(hBase, proc_name); + UINT64 result = ((UINT64)hEntry - (UINT64)hBase) + (UINT64)m_TargetBaseAddress; + FreeLibrary(hBase); + return result; + } private: HANDLE m_TargetPID = 0; |