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.

45 lines
707 B

  1. //
  2. //
  3. // PURPOSE: Header files that should be in the precompiled header.
  4. //
  5. // PLATFORMS:
  6. // Windows NT
  7. //
  8. //
  9. #ifndef _PRECOMP_H
  10. #define _PRECOMP_H
  11. // Necessary for compiling under VC.
  12. // kill 2 lines for IA 64
  13. //#define WINVER 0x0500
  14. //#define _WIN32_WINNT 0x0500
  15. // Required header files that shouldn't change often.
  16. #include <STDDEF.H>
  17. #include <STDLIB.H>
  18. #include <OBJBASE.H>
  19. #include <STDARG.H>
  20. #include <STDIO.H>
  21. #include <WINDEF.H>
  22. #include <WINERROR.H>
  23. #include <WINBASE.H>
  24. #include <WINGDI.H>
  25. extern "C"
  26. {
  27. #include <WINDDI.H>
  28. }
  29. #include <TCHAR.H>
  30. #include <EXCPT.H>
  31. #include <ASSERT.H>
  32. #include <PRINTOEM.H>
  33. #endif