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.

60 lines
1.1 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. Venu Gopal Choudary 10-July-2001 : Created it
  11. Revision History:
  12. ******************************************************************************/
  13. #ifndef __PCH_H
  14. #define __PCH_H
  15. #if _MSC_VER > 1000
  16. #pragma once
  17. #endif // _MSC_VER > 1000 // include header file only once
  18. #if !defined( SECURITY_WIN32 ) && !defined( SECURITY_KERNEL ) && !defined( SECURITY_MAC )
  19. #define SECURITY_WIN32
  20. #endif
  21. //
  22. // public Windows header files
  23. //
  24. #include <windows.h>
  25. #include <security.h>
  26. // public C header files
  27. //
  28. #include <stdio.h>
  29. #include <tchar.h>
  30. #include <shlwapi.h>
  31. //
  32. //strsafe apis
  33. //
  34. #define STRSAFE_NO_DEPRECATE
  35. #include <strsafe.h>
  36. //
  37. // private Common header files
  38. //
  39. #include "cmdline.h"
  40. #include "cmdlineres.h"
  41. #endif // __PCH_H