mirror of
https://bitbucket.org/CPMADevs/cnq3
synced 2024-11-12 23:44:29 +00:00
20 lines
316 B
C
20 lines
316 B
C
#pragma once
|
|
|
|
|
|
#if defined(WINVER)
|
|
#undef WINVER
|
|
#endif
|
|
#if defined(_WIN32_WINNT)
|
|
#undef _WIN32_WINNT
|
|
#endif
|
|
#define WINVER _WIN32_WINNT_WIN10
|
|
#define _WIN32_WINNT _WIN32_WINNT_WIN10
|
|
|
|
#if defined(UNICODE)
|
|
#undef UNICODE
|
|
#endif
|
|
#if defined(_UNICODE)
|
|
#undef _UNICODE
|
|
#endif
|
|
|
|
#include <Windows.h>
|