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.

32 lines
533 B

  1. /*
  2. * Precomp.h
  3. *
  4. * Author: BreenH
  5. *
  6. * Precompiled header for TS Util.
  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 <aclapi.h>
  24. #include <ntlsapi.h>
  25. #pragma warning(pop)