mirror of
https://bitbucket.org/CPMADevs/cnq3
synced 2024-11-12 23:44:29 +00:00
954c80a8b5
use the "premake" tool from the cnq3tools repo with "--quake3dir=<q3dir>" to generate a VS sln and gcc makefiles this changeset also removes the "clever" handling of fullscreen/windowed changes which didn't actually work and just broke windowed mode
20 lines
318 B
C
20 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>
|