emu48-mirror/Sources/Emu48/PCH.H

31 lines
558 B
C
Raw Normal View History

//
// PCH.H
//
2024-03-19 22:37:54 +01:00
#define _WIN32_IE 0x0200
#include <windows.h>
2024-03-19 22:37:03 +01:00
#include <tchar.h>
2024-03-19 22:24:30 +01:00
#include <shellapi.h>
2024-03-19 22:37:03 +01:00
#include <commctrl.h>
2024-03-19 22:38:33 +01:00
#include <shlobj.h>
#include <stdlib.h>
2024-03-19 22:37:54 +01:00
#include <ctype.h>
#include <stdio.h>
#include <direct.h>
#include <conio.h>
2024-03-19 22:38:33 +01:00
#include <crtdbg.h>
#if !defined VERIFY
#if defined _DEBUG
#define VERIFY(f) _ASSERT(f)
#else // _DEBUG
#define VERIFY(f) ((VOID)(f))
#endif // _DEBUG
#endif // _VERIFY
2024-03-19 22:38:33 +01:00
#if !defined IDC_HAND // Win2k specific definition
#define IDC_HAND MAKEINTRESOURCE(32649)
#endif