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.

82 lines
1.7 KiB

  1. // *********************************************************************************
  2. //
  3. // Copyright (c) Microsoft Corporation
  4. //
  5. // Module Name:
  6. //
  7. // pch.h
  8. //
  9. // Abstract:
  10. //
  11. // pre-compiled header declaration
  12. // files that has to be pre-compiled into .pch file
  13. //
  14. // Author:
  15. //
  16. // Sunil G.V.N. Murali ([email protected]) 24-Sep-2000
  17. //
  18. // Revision History:
  19. //
  20. // Sunil G.V.N. Murali ([email protected]) 24-Sep-2000 : Created It.
  21. //
  22. // *********************************************************************************
  23. #ifndef __PCH_H
  24. #define __PCH_H
  25. #pragma once // include header file only once
  26. #if !defined( SECURITY_WIN32 ) && !defined( SECURITY_KERNEL ) && !defined( SECURITY_MAC )
  27. #define SECURITY_WIN32
  28. #endif
  29. //
  30. // Private nt headers.
  31. //
  32. extern "C"
  33. {
  34. #include <nt.h>
  35. #include <ntrtl.h>
  36. #include <nturtl.h>
  37. #include <ntexapi.h>
  38. #include <Security.h>
  39. #include <SecExt.h>
  40. }
  41. //
  42. // public Windows header files
  43. //
  44. #include <windows.h>
  45. #include <winperf.h>
  46. #include <wbemidl.h>
  47. #include <chstring.h>
  48. #include <comdef.h>
  49. #include <wbemtime.h>
  50. #include <tchar.h>
  51. #include <wbemidl.h>
  52. #include <wbemprov.h>
  53. #include <winerror.h>
  54. #include <dsgetdc.h>
  55. #include <lm.h>
  56. #include <dsrole.h> // domain role information
  57. #include <Sddl.h> // Sid conversion functions
  58. #include <activeds.h>
  59. #include <Ntdsapi.h>
  60. #include <ntsecapi.h>
  61. #include <strsafe.h>
  62. #include <userenv.h>
  63. //
  64. // public C header files
  65. //
  66. #include <stdio.h>
  67. #include <string.h>
  68. #include <crtdbg.h>
  69. //
  70. // private Common header files
  71. //
  72. #include "cmdlineres.h"
  73. #include "cmdline.h"
  74. #endif // __PCH_H