af664bab5f
Signed-off-by: Gwenhael Le Moine <gwenhael.le.moine@gmail.com>
39 lines
837 B
C
39 lines
837 B
C
//
|
|
// PCH.H
|
|
//
|
|
|
|
#define _WIN32_IE 0x0200
|
|
#define _CRT_SECURE_NO_DEPRECATE
|
|
|
|
#include <windows.h>
|
|
#include <tchar.h>
|
|
#include <shellapi.h>
|
|
#include <commctrl.h>
|
|
#include <shlobj.h>
|
|
#include <stdlib.h>
|
|
#include <stddef.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 INVALID_SET_FILE_POINTER
|
|
#define INVALID_SET_FILE_POINTER ((DWORD)-1)
|
|
#endif
|
|
|
|
#if !defined IDC_HAND // Win2k specific definition
|
|
#define IDC_HAND MAKEINTRESOURCE(32649)
|
|
#endif
|
|
|
|
#if _MSC_VER <= 1200 // missing type definition in the MSVC6.0 SDK and earlier
|
|
typedef SIZE_T DWORD_PTR, *PDWORD_PTR;
|
|
#endif
|