diff options
Diffstat (limited to 'NorthstarDLL/util')
-rw-r--r-- | NorthstarDLL/util/wininfo.cpp | 11 | ||||
-rw-r--r-- | NorthstarDLL/util/wininfo.h | 6 |
2 files changed, 17 insertions, 0 deletions
diff --git a/NorthstarDLL/util/wininfo.cpp b/NorthstarDLL/util/wininfo.cpp new file mode 100644 index 00000000..991deb33 --- /dev/null +++ b/NorthstarDLL/util/wininfo.cpp @@ -0,0 +1,11 @@ +#include "pch.h" + +AUTOHOOK_INIT() + +HWND* g_gameHWND; +HMODULE g_NorthstarModule = 0; + +ON_DLL_LOAD("engine.dll", WinInfo, (CModule module)) +{ + g_gameHWND = module.Offset(0x7d88a0).As<HWND*>(); +} diff --git a/NorthstarDLL/util/wininfo.h b/NorthstarDLL/util/wininfo.h new file mode 100644 index 00000000..ac417034 --- /dev/null +++ b/NorthstarDLL/util/wininfo.h @@ -0,0 +1,6 @@ +#pragma once +#pragma once +#include "pch.h" + +extern HWND* g_gameHWND; +extern HMODULE g_NorthstarModule; |