2015-05-31 10:12:29 -05:00
|
|
|
// 31 may 2015
|
|
|
|
#define UNICODE
|
|
|
|
#define _UNICODE
|
|
|
|
#define STRICT
|
|
|
|
#define STRICT_TYPED_ITEMIDS
|
|
|
|
#define CINTERFACE
|
|
|
|
#define COBJMACROS
|
|
|
|
// see https://github.com/golang/go/issues/9916#issuecomment-74812211
|
|
|
|
#define INITGUID
|
2015-09-08 11:11:01 -05:00
|
|
|
#define _USE_MATH_DEFINES
|
2015-05-31 17:45:11 -05:00
|
|
|
// 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 */
|
2015-05-31 10:12:29 -05:00
|
|
|
#include <windows.h>
|
|
|
|
#include <commctrl.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <uxtheme.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <wchar.h>
|
|
|
|
#include <windowsx.h>
|
|
|
|
#include <vsstyle.h>
|
|
|
|
#include <vssym32.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <oleacc.h>
|
|
|
|
#include <stdio.h>
|
2015-05-31 19:27:01 -05:00
|
|
|
#include <shobjidl.h>
|
2015-09-08 11:11:01 -05:00
|
|
|
#include <math.h>
|
2015-09-14 21:42:07 -05:00
|
|
|
#include <usp10.h>
|