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
48 lines
818 B
/*++
|
|
|
|
Copyright (c) 2002 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
stdafx.hxx
|
|
|
|
Abstract:
|
|
|
|
Include file for standard system include files.
|
|
|
|
Author:
|
|
|
|
Adi Oltean [aoltean] 07/02/1999
|
|
|
|
Revision History:
|
|
|
|
|
|
Name Date Comments
|
|
|
|
aoltean 07/02/1999 Created
|
|
aoltean 09/11/1999 Disabling the C4290 warning
|
|
|
|
--*/
|
|
|
|
#ifndef __VSS_STDAFX_HXX__
|
|
#define __VSS_STDAFX_HXX__
|
|
|
|
#if _MSC_VER > 1000
|
|
#pragma once
|
|
#endif
|
|
|
|
#include <windows.h>
|
|
|
|
#include "vss.h"
|
|
#include <vswriter.h>
|
|
#include <vsbackup.h>
|
|
|
|
#include "sassert.h"
|
|
#include <stddef.h>
|
|
#include <atlbase.h>
|
|
#include <atlconv.h>
|
|
#include <new>
|
|
|
|
#pragma warning(disable:4511)
|
|
#pragma warning(disable:4100) // I don't like disabling this, but STL insists
|
|
#endif // __VSS_STDAFX_HXX__
|