1 //
2 // ph.h : include file for standard system include files,
3 //  or project specific include files that are used frequently, but
4 //      are changed infrequently
5 // it is used to generate precompiled header file, if supported.
6 
7 #if !defined(PH_H__FEF419E3_6EB6_11D3_907D_204C4F4F5020__INCLUDED_)
8 #define PH_H__FEF419E3_6EB6_11D3_907D_204C4F4F5020__INCLUDED_
9 
10 #define WIN32_LEAN_AND_MEAN		// Exclude rarely-used stuff from Windows headers
11 
12 // comment next two lines to compile ANSI version
13 //#define UNICODE
14 //#define _UNICODE
15 
16 #if DBG
17 #define _DEBUG
18 #endif
19 
20 #include <stdarg.h>
21 
22 #include <windef.h>
23 #include <winbase.h>
24 #include <wincon.h>
25 #include <wingdi.h>
26 #include <winuser.h>
27 #include <winreg.h>
28 
29 #include <cassert>
30 #define ASSERT	assert
31 #ifdef _DEBUG
32 #define VERIFY ASSERT
33 #else
34 #define VERIFY(e)	(e)
35 #endif
36 
37 #include <conio.h>
38 #include <climits>
39 #include <tchar.h>
40 #include <cstdio>
41 #include <cstdlib>
42 #include <ctype.h>
43 #include <new>
44 
45 // INHERITED_ACE is from windows 2000
46 #ifndef INHERITED_ACE
47 #define INHERITED_ACE                     (0x10)
48 #endif
49 
50 #endif // !defined(PH_H__FEF419E3_6EB6_11D3_907D_204C4F4F5020__INCLUDED_)
51