35 lines
558 B
C
35 lines
558 B
C
|
/*++
|
|||
|
|
|||
|
<EFBFBD> 1998 Seagate Software, Inc. All rights reserved.
|
|||
|
|
|||
|
Module Name:
|
|||
|
|
|||
|
StdAfx.h
|
|||
|
|
|||
|
Abstract:
|
|||
|
|
|||
|
Precompiled header starting point
|
|||
|
|
|||
|
Author:
|
|||
|
|
|||
|
Rohde Wakefield [rohde] 09-Oct-1997
|
|||
|
|
|||
|
Revision History:
|
|||
|
|
|||
|
--*/
|
|||
|
|
|||
|
#ifndef _STDAFX_H
|
|||
|
#define _STDAFX_H
|
|||
|
|
|||
|
#pragma once
|
|||
|
|
|||
|
#define VC_EXTRALEAN // Exclude rarely-used stuff from Windows headers
|
|||
|
|
|||
|
#include <afxwin.h> // MFC core and standard components
|
|||
|
#include <afxext.h> // MFC extensions
|
|||
|
#include <afxcmn.h> // MFC support for Windows Common Controls
|
|||
|
|
|||
|
|
|||
|
#endif // !defined(_STDAFX_H)
|
|||
|
|