2024-03-19 22:22:29 +01:00
|
|
|
//
|
|
|
|
// PCH.H
|
|
|
|
//
|
|
|
|
|
2024-03-19 22:37:54 +01:00
|
|
|
#define _WIN32_IE 0x0200
|
|
|
|
|
2024-03-19 22:22:29 +01:00
|
|
|
#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>
|
2024-03-19 22:22:29 +01:00
|
|
|
#include <stdlib.h>
|
2024-03-19 22:37:54 +01:00
|
|
|
#include <ctype.h>
|
2024-03-19 22:22:29 +01:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <direct.h>
|
2024-03-19 23:35:29 +01:00
|
|
|
#include <conio.h>
|
2024-03-19 22:38:33 +01:00
|
|
|
#include <crtdbg.h>
|
|
|
|
|
2024-03-19 23:33:35 +01:00
|
|
|
#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
|
|
|
|
|