Source code of Windows XP (NT5)
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.

53 lines
1.0 KiB

  1. #ifndef SYSHDRS_HPP_INCLUDED
  2. #define SYSHDRS_HPP_INCLUDED
  3. // the sources file should specify warning level 4. But with warning level
  4. // 4, most of the SDK and CRT headers fail to compile (isn't that nice?).
  5. // So, here we set the warning level to 3 while we compile the headers
  6. #pragma warning(push,3)
  7. #include "syscore.hpp"
  8. #include <list>
  9. #include <vector>
  10. #include <map>
  11. #include <algorithm>
  12. #include <stack>
  13. #include <comutil.h>
  14. #include <commctrl.h>
  15. #include <shlobj.h>
  16. #include <shellapi.h>
  17. #include <htmlhelp.h>
  18. #include <tchar.h>
  19. #include <lmerr.h>
  20. #include <lmcons.h>
  21. #include <lmjoin.h>
  22. #include <lmapibuf.h>
  23. #include <lmserver.h>
  24. #include <lmwksta.h>
  25. #include <icanon.h>
  26. #include <dsrole.h>
  27. #include <dnsapi.h>
  28. #include <dsgetdc.h>
  29. #include <safeboot.h>
  30. #include <regstr.h>
  31. extern "C"
  32. {
  33. #include <dsgetdcp.h>
  34. }
  35. #include <ntdsapi.h>
  36. #include <sddl.h>
  37. #pragma warning(pop)
  38. #endif // SYSHDRS_HPP_INCLUDED