2cc9402f4d
Signed-off-by: Gwenhael Le Moine <gwenhael.le.moine@gmail.com>
30 lines
558 B
C
30 lines
558 B
C
//
|
|
// PCH.H
|
|
//
|
|
|
|
#define _WIN32_IE 0x0200
|
|
|
|
#include <windows.h>
|
|
#include <tchar.h>
|
|
#include <shellapi.h>
|
|
#include <commctrl.h>
|
|
#include <shlobj.h>
|
|
#include <stdlib.h>
|
|
#include <ctype.h>
|
|
#include <stdio.h>
|
|
#include <direct.h>
|
|
#include <conio.h>
|
|
#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
|
|
|
|
#if !defined IDC_HAND // Win2k specific definition
|
|
#define IDC_HAND MAKEINTRESOURCE(32649)
|
|
#endif
|
|
|