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.

79 lines
1.6 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. // Akhil Gokhale ([email protected])
  17. //
  18. // Revision History:
  19. //
  20. // Akhil Gokhale ([email protected])
  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. #include <nt.h>
  33. #include <ntrtl.h>
  34. #include <nturtl.h>
  35. #include <ntexapi.h>
  36. #include <security.h>
  37. #include <secExt.h>
  38. //
  39. // public Windows header files
  40. //Wbemidl.h
  41. #include <windows.h>
  42. #include <objbase.h>
  43. #include <initguid.h>
  44. #include <ole2.h>
  45. #include <mstask.h>
  46. #include <msterr.h>
  47. #include <mbctype.h>
  48. #include <winperf.h>
  49. #include <wbemidl.h>
  50. #include <CHString.h>
  51. #include <comdef.h>
  52. #include <wbemtime.h>
  53. #include <mstask.h>
  54. //
  55. // public C header files
  56. //
  57. #include <stdio.h>
  58. #include <stdlib.h>
  59. #include <string.h>
  60. #include <math.h>
  61. #include <conio.h>
  62. #include <tchar.h>
  63. #include <wchar.h>
  64. #include <crtdbg.h>
  65. #include <strsafe.h>
  66. //
  67. // private Common header files
  68. //
  69. // Following define will link common functionality ver 2
  70. #define CMDLINE_VERSION 200
  71. #include "cmdlineres.h"
  72. #include "cmdline.h"
  73. #endif // __PCH_H