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.

68 lines
1.5 KiB

  1. /*++
  2. Copyright (c) 1999 Microsoft Corporation
  3. Abstract:
  4. @doc
  5. @module stdafx.hxx | Precompiled header file.
  6. @end
  7. Author:
  8. Adi Oltean [aoltean] 09/24/1999
  9. Revision History:
  10. Name Date Comments
  11. aoltean 09/24/1999 Created.
  12. --*/
  13. #ifndef __VSPROP_STDAFX_HXX__
  14. #define __VSPROP_STDAFX_HXX__
  15. #if _MSC_VER > 1000
  16. #pragma once
  17. #endif
  18. // C4786: 'identifier' : identifier was truncated to 'number' characters in the debug information
  19. // #pragma warning(disable:4786)
  20. // C4290: C++ Exception Specification ignored
  21. #pragma warning(disable:4290)
  22. //
  23. // Warning: ATL debugging turned off (BUG 250939)
  24. //
  25. // #ifdef _DEBUG
  26. // #define _ATL_DEBUG_INTERFACES
  27. // #define _ATL_DEBUG_QI
  28. // #define _ATL_DEBUG_REFCOUNT
  29. // #endif // _DEBUG
  30. // Enabling asserts in ATL and VSS
  31. #include "vs_assert.hxx"
  32. //
  33. // Windows and ATL includes
  34. //
  35. #pragma warning( disable: 4189 ) // disable local variable is initialized but not referenced
  36. #include <atlbase.h>
  37. #pragma warning( default: 4189 ) // enable local variable is initialized but not referenced
  38. #pragma warning( disable: 4201 ) // C4201: nonstandard extension used : nameless struct/union
  39. #include <winioctl.h>
  40. #pragma warning( default: 4201 ) // C4201: nonstandard extension used : nameless struct/union
  41. #include <wchar.h>
  42. #include <string.h>
  43. #include <iostream.h>
  44. #include <fstream.h>
  45. #include <stdio.h>
  46. extern CComModule _Module;
  47. #include <atlcom.h>
  48. #endif // __VSPROP_STDAFX_HXX__