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.

78 lines
1.4 KiB

  1. /******************************************************************************
  2. Copyright(c) Microsoft Corporation
  3. Module Name:
  4. pch.h
  5. Abstract:
  6. This header file is a precompiled header for this project.
  7. This module contains the common include files [ system,user defined ]
  8. which are not changed frequently.
  9. Author:
  10. B.Raghu Babu 10-oct-2000
  11. Revision History:
  12. B.Raghu Babu 10-oct-2000 : Created it
  13. ******************************************************************************/
  14. #ifndef __PCH_H
  15. #define __PCH_H
  16. #if _MSC_VER > 1000
  17. #pragma once
  18. #endif // _MSC_VER > 1000 // include header file only once
  19. #if !defined( SECURITY_WIN32 ) && !defined( SECURITY_KERNEL ) && !defined( SECURITY_MAC )
  20. #define SECURITY_WIN32
  21. #endif
  22. #include <nt.h>
  23. #include <ntrtl.h>
  24. #include <nturtl.h>
  25. #include <ntexapi.h>
  26. #include <Security.h>
  27. #include <SecExt.h>
  28. //
  29. // public Windows header files
  30. //
  31. #include <windows.h>
  32. #include <objbase.h>
  33. #include <initguid.h>
  34. #include <ole2.h>
  35. #include <mstask.h>
  36. #include <msterr.h>
  37. #include <mbctype.h>
  38. //
  39. // public C header files
  40. //
  41. #include <stdio.h>
  42. #include <stdlib.h>
  43. #include <string.h>
  44. #include <conio.h>
  45. #include <tchar.h>
  46. #include <wchar.h>
  47. #include <io.h>
  48. #include <sys/stat.h>
  49. #include <crtdbg.h>
  50. #include <assert.h>
  51. #include <shlwapi.h>
  52. // private Common header files
  53. #include "cmdline.h"
  54. #include "cmdlineres.h"
  55. #endif // __PCH_H