Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

58 lines
1.1 KiB

  1. //
  2. //
  3. // PURPOSE: Header files that should be in the precompiled header.
  4. //
  5. // PLATFORMS:
  6. // Windows 2000, Windows XP, Windows Server 2003
  7. //
  8. #ifndef _PRECOMP_H
  9. #define _PRECOMP_H
  10. // Necessary for compiling under VC.
  11. #if(!defined(WINVER) || (WINVER < 0x0500))
  12. #undef WINVER
  13. #define WINVER 0x0500
  14. #endif
  15. #if(!defined(_WIN32_WINNT) || (_WIN32_WINNT < 0x0500))
  16. #undef _WIN32_WINNT
  17. #define _WIN32_WINNT 0x0500
  18. #endif
  19. // Isolation define for using ComCtrl v6.
  20. #ifndef ISOLATION_AWARE_ENABLED
  21. #define ISOLATION_AWARE_ENABLED
  22. #endif
  23. // Required header files that shouldn't change often.
  24. #include <STDDEF.H>
  25. #include <STDLIB.H>
  26. #include <OBJBASE.H>
  27. #include <STDARG.H>
  28. #include <STDIO.H>
  29. #include <WINDEF.H>
  30. #include <WINERROR.H>
  31. #include <WINBASE.H>
  32. #include <WINGDI.H>
  33. #include <WINDDI.H>
  34. #include <WINSPOOL.H>
  35. #include <TCHAR.H>
  36. #include <EXCPT.H>
  37. #include <ASSERT.H>
  38. #include <PRSHT.H>
  39. #include "COMPSTUI.H"
  40. #include <WINDDIUI.H>
  41. #include <PRINTOEM.H>
  42. #include <COMMCTRL.H>
  43. #define COUNTOF(p) (sizeof(p)/sizeof(*(p)))
  44. #endif