aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorToni Uhlig <matzeton@googlemail.com>2019-09-24 21:15:53 +0200
committerToni Uhlig <matzeton@googlemail.com>2019-09-24 21:15:53 +0200
commit8f43f50ee7d0fca67b745a91d2306d46ea4726cd (patch)
tree260a71706b07d957a10d76082382db5df02a7add /include
parented0e93a3f863eb21cf7bc1c43ce529a7f8a82aec (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.h7
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;