ApplicationWin32/WindowWin32: Get/SetWindowLong -> Get/SetWindowLongPtr

Get/SetWindowLong is superseded on 64-bit Windows platform with
Get/SetWindowLongPtr. These are trivial to migrate over and have been
available since Windows 2000 Professional, so there's no need to worry
about breaking meaningful platform support
This commit is contained in:
Lioncash
2019-09-06 07:04:57 -04:00
parent 9b8ef4695f
commit bfd042f156
4 changed files with 30 additions and 21 deletions

View File

@@ -39,8 +39,8 @@ struct OGLContext {
size_t width, height;
bool m_fs = false;
LONG m_fsStyle;
LONG m_fsExStyle;
LONG_PTR m_fsStyle;
LONG_PTR m_fsExStyle;
RECT m_fsRect;
int m_fsCountDown = 0;
};