AppleWin/source/StdAfx.h

44 lines
1.1 KiB
C
Raw Normal View History

//#define WIN32_LEAN_AND_MEAN
// Required for Win98/ME support:
// . See: http://support.embarcadero.com/article/35754
// . "GetOpenFileName() fails under Windows 95/98/NT/ME due to incorrect OPENFILENAME structure size"
#define _WIN32_WINNT 0x0400
#define WINVER 0x500
// Mouse Wheel is not supported on Win95.
// If we didn't care about supporting Win95 (compile/run-time errors)
// we would just define the minimum windows version to support.
// #define _WIN32_WINDOWS 0x0401
#ifndef WM_MOUSEWHEEL
#define WM_MOUSEWHEEL 0x020A
#endif
// Not needed in VC7.1, but needed in VC Express
2006-02-25 20:50:29 +00:00
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
2016-03-21 22:27:09 +00:00
#include <stdint.h> // cleanup WORD DWORD -> uint16_t uint32_t
#include <assert.h>
2006-02-25 20:50:29 +00:00
#include <algorithm>
#include <map>
#include <queue>
2016-03-21 23:48:02 +00:00
#include <stack>
#include <string>
#include <vector>
2017-01-21 20:15:26 +11:00
#include <memory>
#include <linux/wwrapper.h>
// SM_CXPADDEDBORDER is not supported on 2000 & XP:
// http://msdn.microsoft.com/en-nz/library/windows/desktop/ms724385(v=vs.85).aspx
#ifndef SM_CXPADDEDBORDER
#define SM_CXPADDEDBORDER 92
#endif
//#define USE_SPEECH_API