mirror of
https://github.com/AppleWin/AppleWin.git
synced 2024-12-24 07:30:24 +00:00
717c5cba84
. Format now extensible for supporting new hardware types in the future . Include missing items like Apple2Type, CyclesThisVideoFrame (#255) Continue to support loading of old v1 format. Added card save/load for: . Mouse (#260) . HDD (#260) . Printer Extended card support for: . SSC Other: . Added save-state v1 struct size checks . Create SaveState_Structs_v2.h and split out common into SaveState_Structs_common.h . Refactor HardDisk.cpp to use imagehandle; and consolidate with Disk.cpp . Fix Disk/HD_GetFullPathName() which wasn't always returning full pathname . Consolidate common GetImageTitle() and move into DiskImage.cpp
48 lines
1.2 KiB
C++
48 lines
1.2 KiB
C++
//#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
|
|
|
|
// 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
|
|
#include <tchar.h>
|
|
|
|
#include <crtdbg.h>
|
|
#include <dsound.h>
|
|
#include <dshow.h>
|
|
|
|
#include <math.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <time.h>
|
|
|
|
#include <windows.h>
|
|
#include <winuser.h> // WM_MOUSEWHEEL
|
|
#include <commctrl.h>
|
|
#include <ddraw.h>
|
|
#include <htmlhelp.h>
|
|
#include <assert.h>
|
|
|
|
#include <algorithm>
|
|
#include <map>
|
|
#include <queue>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
// 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
|