precomp.h
上传用户:looem2003
上传日期:2014-07-20
资源大小:13733k
文件大小:1k
源码类别:

打印编程

开发平台:

Visual C++

  1. //    
  2. //
  3. //  PURPOSE:    Header files that should be in the precompiled header.
  4. //
  5. //  PLATFORMS:
  6. //
  7. //    Windows XP, Windows Server 2003, Windows codenamed Longhorn
  8. //
  9. //
  10. #ifndef _PRECOMP_H
  11. #define _PRECOMP_H
  12. // Required header files that shouldn't change often.
  13. #include <STDDEF.H>
  14. #include <STDLIB.H>
  15. #include <OBJBASE.H>
  16. #include <STDARG.H>
  17. #include <STDIO.H>
  18. #include <WINDEF.H>
  19. #include <WINERROR.H>
  20. #include <WINBASE.H>
  21. #include <WINGDI.H>
  22. #ifdef __cplusplus
  23. extern "C" 
  24. {
  25. #endif // cplusplus
  26.     #include <WINDDI.H>
  27. #ifdef __cplusplus
  28. }
  29. #endif // cplusplus
  30. #include <TCHAR.H>
  31. #include <EXCPT.H>
  32. #include <ASSERT.H>
  33. #include <PRINTOEM.H>
  34. #include <INTSAFE.H>
  35. #define COUNTOF(p)  (sizeof(p)/sizeof(*(p)))
  36. #endif