diff options
author | Jack <66967891+ASpoonPlaysGames@users.noreply.github.com> | 2023-12-28 14:51:45 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-28 14:51:45 +0000 |
commit | 3b63cf5c83b9f68952195e62e202dd557f7ca6af (patch) | |
tree | bd977e3f566a635ab4c734f2c12621614d44ce83 /primedev/util/wininfo.cpp | |
parent | 0b507aa3eb55c2d06f314a46998cf9415f6a064a (diff) | |
parent | f5ab6fb5e8be7b73e6003d4145081d5e0c0ce287 (diff) | |
download | NorthstarLauncher-3b63cf5c83b9f68952195e62e202dd557f7ca6af.tar.gz NorthstarLauncher-3b63cf5c83b9f68952195e62e202dd557f7ca6af.zip |
Merge branch 'main' into cmake-format
Diffstat (limited to 'primedev/util/wininfo.cpp')
-rw-r--r-- | primedev/util/wininfo.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/primedev/util/wininfo.cpp b/primedev/util/wininfo.cpp new file mode 100644 index 00000000..4fd64369 --- /dev/null +++ b/primedev/util/wininfo.cpp @@ -0,0 +1,9 @@ +AUTOHOOK_INIT() + +HWND* g_gameHWND; +HMODULE g_NorthstarModule = 0; + +ON_DLL_LOAD("engine.dll", WinInfo, (CModule module)) +{ + g_gameHWND = module.Offset(0x7d88a0).RCast<HWND*>(); +} |