-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathframework.h
More file actions
35 lines (25 loc) · 1.14 KB
/
framework.h
File metadata and controls
35 lines (25 loc) · 1.14 KB
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
#pragma once
#ifndef VC_EXTRALEAN
#define VC_EXTRALEAN // Selten verwendete Komponenten aus Windows-Headern ausschließen
#endif
#include "targetver.h"
#define _ATL_CSTRING_EXPLICIT_CONSTRUCTORS // Einige CString-Konstruktoren sind explizit.
#include <afxwin.h> // MFC-Kern- und -Standardkomponenten
#include <afxext.h> // MFC-Erweiterungen
#ifndef _AFX_NO_OLE_SUPPORT
#include <afxole.h> // MFC OLE-Klassen
#include <afxodlgs.h> // MFC OLE-Dialogfeldklassen
#include <afxdisp.h> // MFC-Automatisierungsklassen
#endif // _AFX_NO_OLE_SUPPORT
#ifndef _AFX_NO_DB_SUPPORT
#include <afxdb.h> // MFC-ODBC-Datenbankklassen
#endif // _AFX_NO_DB_SUPPORT
#ifndef _AFX_NO_DAO_SUPPORT
#include <afxdao.h> // MFC-DAO-Datenbankklassen
#endif // _AFX_NO_DAO_SUPPORT
#ifndef _AFX_NO_OLE_SUPPORT
#include <afxdtctl.h> // MFC-Unterstützung für allgemeine Steuerelemente von Internet Explorer 4
#endif
#ifndef _AFX_NO_AFXCMN_SUPPORT
#include <afxcmn.h> // MFC-Unterstützung für allgemeine Windows-Steuerelemente
#endif // _AFX_NO_AFXCMN_SUPPORT