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.

56 lines
1.1 KiB

  1. /*
  2. * precomp.h
  3. *
  4. * Author: BreenH
  5. *
  6. * Precompiled header for the licensing core.
  7. */
  8. //
  9. // Remove warning 4514: unreferenced inline function has been removed.
  10. // This comes up due to the code being compiled at /W4, even though the
  11. // precompiled header is at /W3.
  12. //
  13. #pragma warning(disable: 4514)
  14. //
  15. // Most SDK headers can't survive /W4.
  16. //
  17. #pragma warning(push, 3)
  18. #include <nt.h>
  19. #include <ntrtl.h>
  20. #include <nturtl.h>
  21. #include <ntlsa.h>
  22. #include <windows.h>
  23. #include <stdio.h>
  24. #include <ntlsapi.h>
  25. #include <limits.h>
  26. #include <time.h>
  27. #include <winsta.h>
  28. #include <wstmsg.h>
  29. #include <icadd.h>
  30. #include <icaapi.h>
  31. #include <license.h>
  32. #include <tlsapi.h>
  33. #include <licprot.h>
  34. #include <hslice.h>
  35. #include <lmaccess.h>
  36. #include <lmerr.h>
  37. #include <lmapibuf.h>
  38. #include <dsrole.h>
  39. #include <cryptkey.h>
  40. #include <certutil.h>
  41. #include <lscsp.h>
  42. #include <tsutilnt.h>
  43. #include <md5.h>
  44. #include "..\inc\wsxmgr.h"
  45. #define LSCORE_NO_ICASRV_GLOBALS
  46. #include "..\server\icasrv.h"
  47. #include "..\server\helpasst.h"
  48. #pragma warning(pop)