diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2019-10-24 20:57:38 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-24 20:57:38 +0200 |
commit | 68a54803c28dc2edab99225f2be7f9be0f8dcbed (patch) | |
tree | 3261850d65f12ec41aceab3af5b6a59d938713fd /platform/windows | |
parent | ea901b263cbf53d37c4c53b78e2ddb6434b1d183 (diff) | |
parent | 7b64340eb008a11000518b9a15f15c673c7f2f25 (diff) |
Merge pull request #33035 from bruvzg/macos_fix_warnings
Fix compilation warnings in macOS build, enable `warnings=extra werror=yes`
Diffstat (limited to 'platform/windows')
-rw-r--r-- | platform/windows/os_windows.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/platform/windows/os_windows.h b/platform/windows/os_windows.h index 915d025e3b..683896886b 100644 --- a/platform/windows/os_windows.h +++ b/platform/windows/os_windows.h @@ -81,7 +81,9 @@ class OS_Windows : public OS { KEY_EVENT_BUFFER_SIZE = 512 }; +#ifdef STDOUT_FILE FILE *stdo; +#endif struct KeyEvent { @@ -107,7 +109,6 @@ class OS_Windows : public OS { VisualServer *visual_server; CameraWindows *camera_server; int pressrc; - HDC hDC; // Private GDI Device Context HINSTANCE hInstance; // Holds The Instance Of The Application HWND hWnd; Point2 last_pos; |