blob: 611eb611cc14528b40ade099734152353e0e248e (
plain)
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
|
// stdafx.h : include file for standard system include files,
// or project specific include files that are used frequently, but
// are changed infrequently
//
#ifdef __MFC4__
#define VC_EXTRALEAN /* FIXME: newer mfc samples have this... */
/* FIXME: see database\daoctl\accspict,advanced\cube */
#endif
#include <limits.h>
#include <afxwin.h> // MFC core and standard components
#include <afxext.h> // MFC extensions
#include <afxcoll.h>
#include <setjmp.h>
#include "gdbwin.h"
#include "mini.h"
#include "resource.h"
#include "gui.h"
#include "fontinfo.h"
#ifdef __MFC4__
//#include "waitcur.h" /* FIXME: removed - causes class redef errors */
#else
#include "waitcur.h"
#endif
#include "iface.h"
|