1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
|
/* -*- C++ -*- */
//=============================================================================
/**
* @file ACE_Init_Test_StdAfx.h
*
* $Id: ACE_Init_Test_StdAfx.h 93638 2011-03-24 13:16:05Z johnnyw $
*
* stdafx.h : include file for standard system include files,
* or project specific include files that are used frequently, but
* are changed infrequently
*
*
* @author Steve Huston <shuston@cs.wustl.edu>
*/
//=============================================================================
#ifndef AFX_STDAFX_H__64FDCA02_F7F9_11D2_89B6_00A024CC68DB__INCLUDED_
#define AFX_STDAFX_H__64FDCA02_F7F9_11D2_89B6_00A024CC68DB__INCLUDED_
#if _MSC_VER >= 1000
#pragma once
#endif // _MSC_VER >= 1000
// Exclude rarely-used stuff from Windows headers
#define VC_EXTRALEAN
// MFC core and standard components
#include <afxwin.h>
// MFC extensions
#include <afxext.h>
#ifndef _AFX_NO_AFXCMN_SUPPORT
// MFC support for Windows Common Controls
#include <afxcmn.h>
#endif /* _AFX_NO_AFXCMN_SUPPORT */
//{{AFX_INSERT_LOCATION}} Microsoft Developer Studio will insert
//additional declarations immediately before the previous line.
#endif /* !defined(AFX_STDAFX_H__64FDCA02_F7F9_11D2_89B6_00A024CC68DB__INCLUDED_) */
|