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.

63 lines
1.3 KiB

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