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.

54 lines
921 B

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