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.

72 lines
1.4 KiB

  1. // *********************************************************************************
  2. //
  3. // Copyright (c) Microsoft Corporation
  4. //
  5. // Module Name:
  6. //
  7. // pch.h
  8. //
  9. // Abstract:
  10. //
  11. // This module is a precompiled header file for the common functionality
  12. //
  13. // Author:
  14. //
  15. // Sunil G.V.N. Murali ([email protected]) 1-Sep-2000
  16. //
  17. // Revision History:
  18. //
  19. // Sunil G.V.N. Murali ([email protected]) 1-Sep-2000 : Created It.
  20. //
  21. // *********************************************************************************
  22. // pch.h : include file for standard system include files,
  23. // or project specific include files that are used frequently, but
  24. // are changed infrequently
  25. //
  26. #ifndef __PCH_H
  27. #define __PCH_H
  28. #if _MSC_VER > 1000
  29. #pragma once
  30. #endif // _MSC_VER > 1000
  31. #ifdef __cplusplus
  32. extern "C" {
  33. #endif
  34. #if !defined( SECURITY_WIN32 ) && !defined( SECURITY_KERNEL ) && !defined( SECURITY_MAC )
  35. #define SECURITY_WIN32
  36. #endif
  37. //
  38. // Private nt headers.
  39. //
  40. #include <nt.h>
  41. #include <ntrtl.h>
  42. #include <nturtl.h>
  43. #include <ntexapi.h>
  44. #include <Security.h>
  45. #include <SecExt.h>
  46. //
  47. // public Windows header files
  48. //
  49. #include <windows.h>
  50. #include <winsock2.h>
  51. #include <lm.h>
  52. //
  53. // public C header files
  54. //
  55. #include <stdio.h>
  56. #include <stdlib.h>
  57. #include <string.h>
  58. #include <tchar.h>
  59. #include <wchar.h>
  60. #include <crtdbg.h>
  61. #include <malloc.h>
  62. #endif // __PCH_H