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.
66 lines
1.5 KiB
66 lines
1.5 KiB
/*++
|
|
|
|
Copyright (c) 1999 Microsoft Corporation
|
|
|
|
Abstract:
|
|
|
|
@doc
|
|
@module stdafx.hxx | Precompiled header file.
|
|
@end
|
|
|
|
Author:
|
|
|
|
Adi Oltean [aoltean] 09/24/1999
|
|
|
|
Revision History:
|
|
|
|
Name Date Comments
|
|
|
|
aoltean 09/24/1999 Created.
|
|
|
|
--*/
|
|
|
|
|
|
#ifndef __VSPROP_STDAFX_HXX__
|
|
#define __VSPROP_STDAFX_HXX__
|
|
|
|
#if _MSC_VER > 1000
|
|
#pragma once
|
|
#endif
|
|
|
|
// C4786: 'identifier' : identifier was truncated to 'number' characters in the debug information
|
|
// #pragma warning(disable:4786)
|
|
|
|
// C4290: C++ Exception Specification ignored
|
|
#pragma warning(disable:4290)
|
|
|
|
|
|
//
|
|
// Warning: ATL debugging turned off (BUG 250939)
|
|
//
|
|
// #ifdef _DEBUG
|
|
// #define _ATL_DEBUG_INTERFACES
|
|
// #define _ATL_DEBUG_QI
|
|
// #define _ATL_DEBUG_REFCOUNT
|
|
// #endif // _DEBUG
|
|
|
|
// Enabling asserts in ATL and VSS
|
|
#include "vs_assert.hxx"
|
|
|
|
//
|
|
// Windows and ATL includes
|
|
//
|
|
#pragma warning( disable: 4189 ) // disable local variable is initialized but not referenced
|
|
#include <atlbase.h>
|
|
#pragma warning( default: 4189 ) // enable local variable is initialized but not referenced
|
|
#pragma warning( disable: 4201 ) // C4201: nonstandard extension used : nameless struct/union
|
|
#include <winioctl.h>
|
|
#pragma warning( default: 4201 ) // C4201: nonstandard extension used : nameless struct/union
|
|
#include <wchar.h>
|
|
#include <string.h>
|
|
#include <iostream.h>
|
|
#include <fstream.h>
|
|
#include <stdio.h>
|
|
|
|
|
|
#endif // __VSPROP_STDAFX_HXX__
|