2009-02-09 21:15:56 +00:00
|
|
|
// stdafx.h : include file for standard system include files,
|
|
|
|
// or project specific include files that are used frequently, but
|
|
|
|
// are changed infrequently
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2016-02-26 11:05:50 +00:00
|
|
|
#define WIN32_LEAN_AND_MEAN
|
2009-02-09 21:15:56 +00:00
|
|
|
|
2016-02-26 11:05:50 +00:00
|
|
|
#define _WIN32_WINNT 0x0600
|
2009-02-09 21:15:56 +00:00
|
|
|
|
2009-06-16 02:28:43 +00:00
|
|
|
#include <windows.h>
|
|
|
|
#include <commctrl.h>
|
|
|
|
#include <commdlg.h>
|
|
|
|
#include <shellapi.h>
|
|
|
|
|
2016-02-27 00:28:25 +00:00
|
|
|
#include <assert.h>
|
2009-06-16 02:28:43 +00:00
|
|
|
#include <time.h>
|
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
#include <list>
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
// syntactic sugar
|
|
|
|
|
|
|
|
// put these into vc9/common7/ide/usertype.dat to have them highlighted
|
|
|
|
|
|
|
|
typedef unsigned char uint8;
|
|
|
|
typedef signed char int8;
|
|
|
|
typedef unsigned short uint16;
|
|
|
|
typedef signed short int16;
|
|
|
|
typedef unsigned int uint32;
|
|
|
|
typedef signed int int32;
|
|
|
|
typedef unsigned long long uint64;
|
|
|
|
typedef signed long long int64;
|
|
|
|
|
|
|
|
#define countof(a) (sizeof(a) / sizeof(a[0]))
|
2009-02-09 21:15:56 +00:00
|
|
|
|
2016-06-05 21:46:53 +00:00
|
|
|
#define EXPORT_C extern "C" void __stdcall
|
|
|
|
#define EXPORT_C_(type) extern "C" type __stdcall
|
2009-02-09 21:15:56 +00:00
|
|
|
|
2009-06-16 02:28:43 +00:00
|
|
|
#define ALIGN_STACK(n) __declspec(align(n)) int __dummy;
|
|
|
|
|
2009-02-09 21:15:56 +00:00
|
|
|
#ifndef RESTRICT
|
|
|
|
#ifdef __INTEL_COMPILER
|
|
|
|
#define RESTRICT restrict
|
2009-06-16 02:28:43 +00:00
|
|
|
#elif _MSC_VER >= 1400 // TODO: gcc
|
2009-02-09 21:15:56 +00:00
|
|
|
#define RESTRICT __restrict
|
|
|
|
#else
|
|
|
|
#define RESTRICT
|
|
|
|
#endif
|
|
|
|
#endif
|