29 lines
727 B
C
29 lines
727 B
C
/*
|
|
-----------------------------------------------------------------------------
|
|
File: stdafx.h
|
|
|
|
Desc: Include file for standard system include files.
|
|
|
|
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
|
|
Chris Danford
|
|
-----------------------------------------------------------------------------
|
|
*/
|
|
|
|
#ifndef STDAFX_H
|
|
#define STDAFX_H
|
|
|
|
#if _MSC_VER >= 1000
|
|
#pragma once
|
|
#endif // _MSC_VER >= 1000
|
|
|
|
#define VC_EXTRALEAN // Exclude rarely-used stuff
|
|
|
|
#include <afxwin.h> // MFC core and standard components
|
|
#include <afxext.h> // MFC extensions
|
|
#include <afxtempl.h> // MFC templated collections
|
|
|
|
/* Don't include our own headers here, since they tend to change
|
|
* often. */
|
|
|
|
#endif
|