mirror of https://github.com/tongzx/nt5src
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.
34 lines
558 B
34 lines
558 B
/*++
|
|
|
|
© 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)
|
|
|