14 lines
538 B
C
14 lines
538 B
C
// 31 may 2015
|
|
#define UNICODE
|
|
#define _UNICODE
|
|
#define STRICT
|
|
#define STRICT_TYPED_ITEMIDS
|
|
// get Windows version right; right now Windows Vista
|
|
#define WINVER 0x0600 /* according to Microsoft's winnls.h */
|
|
#define _WIN32_WINNT 0x0600 /* according to Microsoft's sdkddkver.h */
|
|
#define _WIN32_WINDOWS 0x0600 /* according to Microsoft's pdh.h */
|
|
#define _WIN32_IE 0x0700 /* according to Microsoft's sdkddkver.h */
|
|
#define NTDDI_VERSION 0x06000000 /* according to Microsoft's sdkddkver.h */
|
|
#include <windows.h>
|
|
#include <stdarg.h>
|