diff options
author | uniboi <64006268+uniboi@users.noreply.github.com> | 2023-01-21 10:36:55 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-21 10:36:55 +0000 |
commit | 9b6731de9a0980515d1d8954f46935a1445dcf02 (patch) | |
tree | 7dca50d57b17518e0e4cd1ebbb421e9c92b602c0 /NorthstarDLL/util/wininfo.h | |
parent | 3a6162627155ec48244c5870729c67fd201e6d6f (diff) | |
download | NorthstarLauncher-9b6731de9a0980515d1d8954f46935a1445dcf02.tar.gz NorthstarLauncher-9b6731de9a0980515d1d8954f46935a1445dcf02.zip |
Expose Cursor Position to UI vm (#387)
* add NSGetCursorPosition
* fix vs filters
* fix clang formatting
* Create wininfo.h
* Create wininfo.cpp
* add wininfo to compiler options
* add wininfo to filters
* move wininfo
* clamp position to screen size
Diffstat (limited to 'NorthstarDLL/util/wininfo.h')
-rw-r--r-- | NorthstarDLL/util/wininfo.h | 6 |
1 files changed, 6 insertions, 0 deletions
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; |