AppleWin/AppleWin/source/StdAfx.h

59 lines
1.3 KiB
C
Raw Normal View History

//#define WIN32_LEAN_AND_MEAN
#define _WIN32_WINNT 0x0400 // For CoInitializeEx() to get defined in objbase.h
// Mouse Wheel is not supported on Win95.
// If we didn't care about supporting Win95 (compile/run-time errors)
// we would just define the minmimum 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>
2006-02-25 20:50:29 +00:00
#include <crtdbg.h>
#include <dsound.h>
#include <dshow.h>
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
2006-02-25 20:50:29 +00:00
#include <windows.h>
#include <winuser.h> // WM_MOUSEWHEEL
2006-02-25 20:50:29 +00:00
#include <commctrl.h>
#include <ddraw.h>
#include <htmlhelp.h>
#include "Common.h"
#include "Structs.h"
#include "AppleWin.h"
#include "AY8910.h"
#include "CPU.h"
#include "Debug.h"
#include "Disk.h"
#include "DiskImage.h"
#include "Frame.h"
#include "Harddisk.h"
#include "Joystick.h"
#include "Keyboard.h"
#include "Log.h"
2006-02-25 20:50:29 +00:00
#include "Memory.h"
#include "Mockingboard.h"
#include "ParallelPrinter.h"
2008-09-04 16:40:10 +00:00
#include "Peripheral_Clock_Generic.h"
2006-02-25 20:50:29 +00:00
#include "PropertySheetPage.h"
#include "Registry.h"
#include "Riff.h"
#include "SaveState.h"
#include "SerialComms.h"
#include "SoundCore.h"
#include "Speaker.h"
#include "Tape.h"
2006-03-24 06:34:37 +00:00
#include "Tfe/Tfe.h"
2006-02-25 20:50:29 +00:00
#include "Video.h"