]> git.sesse.net Git - casparcg/blob - common/os/windows/windows.h
[ffmpeg] Remove redundant av_frame_alloc()/av_frame_free() RAII pairs all over the...
[casparcg] / common / os / windows / windows.h
1 #pragma once
2
3 #undef _UNICODE
4 #define _UNICODE
5 #undef UNICODE
6 #define UNICODE
7
8 #undef NOMINMAX
9 #define NOMINMAX
10
11 #undef NOSERVICE
12 #define NOSERVICE
13 #undef NOMCX
14 #define NOMCX
15
16 #ifdef _MSC_VER
17 #       include <SDKDDKVer.h>
18 #endif
19 #ifndef _WIN32_WINNT
20 #define _WIN32_WINNT _WIN32_WINNT_WIN7
21 #endif
22
23 #undef WIN32_LEAN_AND_MEAN
24 #define WIN32_LEAN_AND_MEAN
25
26 #include <windows.h>