diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2019-09-22 13:50:21 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2019-09-22 13:50:21 +0200 |
commit | 022e0eda435a392fffb1a10c9b907253aa78fef9 (patch) | |
tree | 5fe0549b62c8a05e3a9730da25eb48abe85040eb /include | |
parent | 2c3f2c0f63478b5d158ae72e255627a4a39f00b1 (diff) |
added load and test library entry for DLLHelper
Diffstat (limited to 'include')
-rw-r--r-- | include/DLLHelper.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/include/DLLHelper.h b/include/DLLHelper.h index 5631626..cc61572 100644 --- a/include/DLLHelper.h +++ b/include/DLLHelper.h @@ -6,6 +6,19 @@ typedef void(*LibEntry_FN)(void); +static inline bool LoadAndTestLibraryEntry(const char * const fullDllPath) +{ + HMODULE TestDLLModule = LoadLibraryA(fullDllPath); + LibEntry_FN LibEntryProc = (LibEntry_FN)GetProcAddress(TestDLLModule, "LibEntry"); + if (LibEntryProc) { + LibEntryProc(); + return true; + } + else { + return false; + } +} + class DLLHelper { public: |