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.

49 lines
929 B

  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. //
  9. #ifndef _PRECOMP_H
  10. #define _PRECOMP_H
  11. // Necessary for compiling under VC.
  12. #if(!defined(WINVER) || (WINVER < 0x0500))
  13. #undef WINVER
  14. #define WINVER 0x0500
  15. #endif
  16. #if(!defined(_WIN32_WINNT) || (_WIN32_WINNT < 0x0500))
  17. #undef _WIN32_WINNT
  18. #define _WIN32_WINNT 0x0500
  19. #endif
  20. // Required header files that shouldn't change often.
  21. #include <STDDEF.H>
  22. #include <STDLIB.H>
  23. #include <OBJBASE.H>
  24. #include <STDARG.H>
  25. #include <STDIO.H>
  26. #include <WINDEF.H>
  27. #include <WINERROR.H>
  28. #include <WINBASE.H>
  29. #include <WINGDI.H>
  30. #include <WINDDI.H>
  31. #include <WINSPOOL.H>
  32. #include <TCHAR.H>
  33. #include <EXCPT.H>
  34. #include <ASSERT.H>
  35. #include <PRSHT.H>
  36. #include <COMPSTUI.H>
  37. #include <WINDDIUI.H>
  38. #include <PRINTOEM.H>
  39. #endif