Changeset View
Changeset View
Standalone View
Standalone View
intern/ghost/intern/GHOST_DisplayManagerWin32.cpp
| Show All 18 Lines | |||||
| /** \file | /** \file | ||||
| * \ingroup GHOST | * \ingroup GHOST | ||||
| */ | */ | ||||
| #include "GHOST_DisplayManagerWin32.h" | #include "GHOST_DisplayManagerWin32.h" | ||||
| #include "GHOST_Debug.h" | #include "GHOST_Debug.h" | ||||
| #undef _WIN32_WINNT | |||||
| #define _WIN32_WINNT 0x501 // require Windows XP or newer | |||||
| #define WIN32_LEAN_AND_MEAN | #define WIN32_LEAN_AND_MEAN | ||||
| #include <windows.h> | #include <windows.h> | ||||
| // We do not support multiple monitors at the moment | // We do not support multiple monitors at the moment | ||||
| #define COMPILE_MULTIMON_STUBS | #define COMPILE_MULTIMON_STUBS | ||||
| #include <multimon.h> | #include <multimon.h> | ||||
| GHOST_DisplayManagerWin32::GHOST_DisplayManagerWin32(void) | GHOST_DisplayManagerWin32::GHOST_DisplayManagerWin32(void) | ||||
| ▲ Show 20 Lines • Show All 153 Lines • Show Last 20 Lines | |||||