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.

55 lines
1.2 KiB

  1. // *********************************************************************************
  2. //
  3. // Copyright(c) Microsoft Corporation
  4. //
  5. // Module Name:
  6. //
  7. // pch.h
  8. //
  9. // Abstract:
  10. //
  11. // This header file is a precompiled header for this project.
  12. // This module contains the common include files [ system,user defined ]
  13. // which are not changed frequently.
  14. //
  15. // Author:
  16. //
  17. // Venu Gopal Choudary 10-July-2001 : Created it
  18. //
  19. // Revision History:
  20. // Wipro Technologies 10-July-10: Modified
  21. //
  22. // *********************************************************************************
  23. #ifndef __PCH_H
  24. #define __PCH_H
  25. #if _MSC_VER > 1000
  26. #pragma once
  27. #endif // _MSC_VER > 1000 // include header file only once
  28. #if !defined( SECURITY_WIN32 ) && !defined( SECURITY_KERNEL ) && !defined( SECURITY_MAC )
  29. #define SECURITY_WIN32
  30. #endif
  31. #define CMDLINE_VERSION 200
  32. //
  33. // public Windows header files
  34. //
  35. #include <windows.h>
  36. #include <security.h>
  37. // public C header files
  38. //
  39. #include <stdio.h>
  40. #include <tchar.h>
  41. #include <shlwapi.h>
  42. #include <strsafe.h>
  43. //
  44. // private Common header files
  45. //
  46. #include "cmdline.h"
  47. #include "cmdlineres.h"
  48. #endif // __PCH_H