mirror of
https://bitbucket.org/CPMADevs/cnq3
synced 2024-11-10 14:41:48 +00:00
21 lines
318 B
C
21 lines
318 B
C
|
#pragma once
|
||
|
|
||
|
|
||
|
#if defined(WINVER)
|
||
|
#undef WINVER
|
||
|
#endif
|
||
|
#if defined(_WIN32_WINNT)
|
||
|
#undef _WIN32_WINNT
|
||
|
#endif
|
||
|
#define WINVER _WIN32_WINNT_VISTA
|
||
|
#define _WIN32_WINNT _WIN32_WINNT_VISTA
|
||
|
|
||
|
#if defined(UNICODE)
|
||
|
#undef UNICODE
|
||
|
#endif
|
||
|
#if defined(_UNICODE)
|
||
|
#undef _UNICODE
|
||
|
#endif
|
||
|
|
||
|
#include <Windows.h>
|