diff options
Diffstat (limited to 'NorthstarDLL/hooks.h')
-rw-r--r-- | NorthstarDLL/hooks.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/NorthstarDLL/hooks.h b/NorthstarDLL/hooks.h new file mode 100644 index 00000000..ab7b3d64 --- /dev/null +++ b/NorthstarDLL/hooks.h @@ -0,0 +1,11 @@ +#pragma once +#include <string> + +void InstallInitialHooks(); + +typedef void (*DllLoadCallbackFuncType)(HMODULE moduleAddress); +void AddDllLoadCallback(std::string dll, DllLoadCallbackFuncType callback); +void AddDllLoadCallbackForDedicatedServer(std::string dll, DllLoadCallbackFuncType callback); +void AddDllLoadCallbackForClient(std::string dll, DllLoadCallbackFuncType callback); + +void CallAllPendingDLLLoadCallbacks();
\ No newline at end of file |