mirror of
https://github.com/AppleWin/AppleWin.git
synced 2024-11-19 04:08:45 +00:00
8298d32a69
many scrolling fixes general cleanup of globals
55 lines
1.1 KiB
C
55 lines
1.1 KiB
C
#define WIN32_LEAN_AND_ME
|
|
|
|
// 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>
|
|
|
|
#include <crtdbg.h>
|
|
#include <dsound.h>
|
|
#include <dshow.h>
|
|
|
|
#include <math.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <tchar.h>
|
|
#include <time.h>
|
|
|
|
#include <windows.h>
|
|
#include <winuser.h> // WM_MOUSEWHEEL
|
|
#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 "Memory.h"
|
|
#include "Mockingboard.h"
|
|
#include "PropertySheetPage.h"
|
|
#include "Registry.h"
|
|
#include "Riff.h"
|
|
#include "SaveState.h"
|
|
#include "SerialComms.h"
|
|
#include "SoundCore.h"
|
|
#include "Speaker.h"
|
|
#include "Tfe/Tfe.h"
|
|
#include "Video.h"
|