Changeset View
Changeset View
Standalone View
Standalone View
intern/ghost/intern/GHOST_SystemWin32.cpp
| Show All 22 Lines | |||||
| #include "GHOST_SystemWin32.h" | #include "GHOST_SystemWin32.h" | ||||
| #include "GHOST_EventDragnDrop.h" | #include "GHOST_EventDragnDrop.h" | ||||
| #ifndef _WIN32_IE | #ifndef _WIN32_IE | ||||
| # define _WIN32_IE 0x0501 /* shipped before XP, so doesn't impose additional requirements */ | # define _WIN32_IE 0x0501 /* shipped before XP, so doesn't impose additional requirements */ | ||||
| #endif | #endif | ||||
| /* clang-format off */ | |||||
| #pragma comment(linker,"\"/manifestdependency:type='win32' \ | |||||
| name='Microsoft.Windows.Common-Controls' version='6.0.0.0' \ | |||||
| processorArchitecture='*' publicKeyToken='6595b64144ccf1df' language='*'\"") | |||||
| /* clang-format on */ | |||||
| #include <commctrl.h> | #include <commctrl.h> | ||||
| #include <shlobj.h> | #include <shlobj.h> | ||||
| #include <tlhelp32.h> | #include <tlhelp32.h> | ||||
| #include <psapi.h> | #include <psapi.h> | ||||
| #include <shellapi.h> | #include <shellapi.h> | ||||
| #include <windowsx.h> | #include <windowsx.h> | ||||
| #include "utfconv.h" | #include "utfconv.h" | ||||
| ▲ Show 20 Lines • Show All 1,886 Lines • Show Last 20 Lines | |||||