aboutsummaryrefslogtreecommitdiff
path: root/NorthstarDLL/util/wininfo.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'NorthstarDLL/util/wininfo.cpp')
-rw-r--r--NorthstarDLL/util/wininfo.cpp11
1 files changed, 11 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*>();
+}