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.

48 lines
818 B

  1. /*++
  2. Copyright (c) 2002 Microsoft Corporation
  3. Module Name:
  4. stdafx.hxx
  5. Abstract:
  6. Include file for standard system include files.
  7. Author:
  8. Adi Oltean [aoltean] 07/02/1999
  9. Revision History:
  10. Name Date Comments
  11. aoltean 07/02/1999 Created
  12. aoltean 09/11/1999 Disabling the C4290 warning
  13. --*/
  14. #ifndef __VSS_STDAFX_HXX__
  15. #define __VSS_STDAFX_HXX__
  16. #if _MSC_VER > 1000
  17. #pragma once
  18. #endif
  19. #include <windows.h>
  20. #include "vss.h"
  21. #include <vswriter.h>
  22. #include <vsbackup.h>
  23. #include "sassert.h"
  24. #include <stddef.h>
  25. #include <atlbase.h>
  26. #include <atlconv.h>
  27. #include <new>
  28. #pragma warning(disable:4511)
  29. #pragma warning(disable:4100) // I don't like disabling this, but STL insists
  30. #endif // __VSS_STDAFX_HXX__