|
|
|
@ -321,7 +321,6 @@ typedef struct _GLFWwindowWin32 |
|
|
|
|
int lastCursorPosX, lastCursorPosY; |
|
|
|
|
// The last recevied high surrogate when decoding pairs of UTF-16 messages
|
|
|
|
|
WCHAR highSurrogate; |
|
|
|
|
|
|
|
|
|
} _GLFWwindowWin32; |
|
|
|
|
|
|
|
|
|
// Win32-specific global data
|
|
|
|
@ -388,7 +387,6 @@ typedef struct _GLFWlibraryWin32 |
|
|
|
|
HINSTANCE instance; |
|
|
|
|
PFN_RtlVerifyVersionInfo RtlVerifyVersionInfo_; |
|
|
|
|
} ntdll; |
|
|
|
|
|
|
|
|
|
} _GLFWlibraryWin32; |
|
|
|
|
|
|
|
|
|
// Win32-specific per-monitor data
|
|
|
|
@ -403,7 +401,6 @@ typedef struct _GLFWmonitorWin32 |
|
|
|
|
char publicDisplayName[32]; |
|
|
|
|
GLFWbool modesPruned; |
|
|
|
|
GLFWbool modeChanged; |
|
|
|
|
|
|
|
|
|
} _GLFWmonitorWin32; |
|
|
|
|
|
|
|
|
|
// Win32-specific per-cursor data
|
|
|
|
@ -411,7 +408,6 @@ typedef struct _GLFWmonitorWin32 |
|
|
|
|
typedef struct _GLFWcursorWin32 |
|
|
|
|
{ |
|
|
|
|
HCURSOR handle; |
|
|
|
|
|
|
|
|
|
} _GLFWcursorWin32; |
|
|
|
|
|
|
|
|
|
// Win32-specific global timer data
|
|
|
|
@ -420,7 +416,6 @@ typedef struct _GLFWtimerWin32 |
|
|
|
|
{ |
|
|
|
|
GLFWbool hasPC; |
|
|
|
|
uint64_t frequency; |
|
|
|
|
|
|
|
|
|
} _GLFWtimerWin32; |
|
|
|
|
|
|
|
|
|
// Win32-specific thread local storage data
|
|
|
|
@ -429,7 +424,6 @@ typedef struct _GLFWtlsWin32 |
|
|
|
|
{ |
|
|
|
|
GLFWbool allocated; |
|
|
|
|
DWORD index; |
|
|
|
|
|
|
|
|
|
} _GLFWtlsWin32; |
|
|
|
|
|
|
|
|
|
// Win32-specific mutex data
|
|
|
|
@ -438,7 +432,6 @@ typedef struct _GLFWmutexWin32 |
|
|
|
|
{ |
|
|
|
|
GLFWbool allocated; |
|
|
|
|
CRITICAL_SECTION section; |
|
|
|
|
|
|
|
|
|
} _GLFWmutexWin32; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|