313b38ea4621b8566e1240c3ed6c46a2fc0f5c87
[ardour.git] / libs / backends / wavesaudio / wavesapi / devicemanager / IncludeWindows.h
1 #ifndef __IncludeWindows_h__
2 #define __IncludeWindows_h__
3
4 #ifdef _WINDOWS
5
6 /* Copy to include
7 #include "IncludeWindows.h"
8 */
9
10 #ifndef _WIN32_WINNT
11 #define _WIN32_WINNT    0x0601   // Windows 7
12 #endif
13
14 #ifndef WINVER
15 #define WINVER                  0x0601   // Windows 7
16 #endif
17
18 #ifndef WIN32_LEAN_AND_MEAN
19 #define WIN32_LEAN_AND_MEAN
20 #endif
21
22 #ifndef NOMINMAX
23 #define NOMINMAX // DO NOT REMOVE NOMINMAX - DOING SO CAUSES CONFLICTS WITH STD INCLUDES (<limits> ...)
24 #endif
25
26 #include <WinSock2.h>
27 #include <Windows.h>
28 #include <objbase.h>
29 #endif // #if _WINDOWS 
30 #endif // #ifndef __IncludeWindows_h__
31