precomp.h
上传用户:looem2003
上传日期:2014-07-20
资源大小:13733k
文件大小:1k
- //
- //
- // PURPOSE: Header files that should be in the precompiled header.
- //
- // PLATFORMS:
- //
- // Windows XP, Windows Server 2003, Windows codenamed Longhorn
- //
- //
- #ifndef _PRECOMP_H
- #define _PRECOMP_H
- // Required header files that shouldn't change often.
- #include <STDDEF.H>
- #include <STDLIB.H>
- #include <OBJBASE.H>
- #include <STDARG.H>
- #include <STDIO.H>
- #include <WINDEF.H>
- #include <WINERROR.H>
- #include <WINBASE.H>
- #include <WINGDI.H>
- #ifdef __cplusplus
- extern "C"
- {
- #endif // cplusplus
- #include <WINDDI.H>
- #ifdef __cplusplus
- }
- #endif // cplusplus
- #include <TCHAR.H>
- #include <EXCPT.H>
- #include <ASSERT.H>
- #include <PRINTOEM.H>
- #include <INTSAFE.H>
- #define COUNTOF(p) (sizeof(p)/sizeof(*(p)))
- #endif