root/trunk/StdAfx.h

Revision 5, 3.0 kB (checked in by qbert, 6 years ago)

Initial ( and last :( ) commit

Line 
1 // stdafx.h : include file for standard system include files,
2 //  or project specific include files that are used frequently, but
3 //      are changed infrequently
4 //
5
6 #if !defined(AFX_STDAFX_H__57181F90_B1A6_4AC9_97C7_BCB1225C7801__INCLUDED_)
7 #define AFX_STDAFX_H__57181F90_B1A6_4AC9_97C7_BCB1225C7801__INCLUDED_
8
9 #if _MSC_VER > 1000
10 #pragma once
11 #endif // _MSC_VER > 1000
12
13 #ifndef VC_EXTRALEAN
14 #define VC_EXTRALEAN        // Exclude rarely-used stuff from Windows headers
15 #endif
16
17 #if _MSC_VER > 1200
18
19 // Modify the following defines if you have to target a platform prior to the ones specified below.
20 // Refer to MSDN for the latest info on corresponding values for different platforms.
21 #ifndef WINVER              // Allow use of features specific to Windows 95 and Windows NT 4 or later.
22 #define WINVER 0x0400       // Change this to the appropriate value to target Windows 98 and Windows 2000 or later.
23 #endif
24
25 #ifndef _WIN32_WINNT        // Allow use of features specific to Windows NT 4 or later.
26 #define _WIN32_WINNT 0x0400     // Change this to the appropriate value to target Windows 98 and Windows 2000 or later.
27 #endif                     
28
29 #ifndef _WIN32_WINDOWS      // Allow use of features specific to Windows 98 or later.
30 #define _WIN32_WINDOWS 0x0410 // Change this to the appropriate value to target Windows Me or later.
31 #endif
32
33 #ifndef _WIN32_IE           // Allow use of features specific to IE 4.0 or later.
34 #define _WIN32_IE 0x0500    // Change this to the appropriate value to target IE 5.0 or later.
35 #endif
36
37 #endif
38
39 #pragma warning( disable : 4503 )
40 #pragma warning( disable : 4786 )
41
42 #include <afxwin.h>         // MFC core and standard components
43 #include <afxext.h>         // MFC extensions
44 #include <afxdisp.h>        // MFC Automation classes
45 #if _MSC_VER >= 1200
46 #include <afxdtctl.h>       // MFC support for Internet Explorer 4 Common Controls
47 #endif
48 #ifndef _AFX_NO_AFXCMN_SUPPORT
49 #include <afxcmn.h>         // MFC support for Windows Common Controls
50 #endif // _AFX_NO_AFXCMN_SUPPORT
51
52 #include "resource.h"
53 #include <XTToolKit.h>      // Xtreme Toolkit MFC Extensions
54
55
56 #include <string>
57 #include <vector>
58 #include <deque>
59 using namespace std;
60
61
62 #include <platform.h>
63 #include <scintilla.h>
64 #include "Scintilla/MFCWrappers/ScintillaDocView.h"
65 #include "Scintilla/MFCWrappers/ScintillaCtrl.h"
66
67 #include "cs_filefunctions.h"
68 #include "Executor.h"
69 #include "stringfunctions.h"
70 #include "ElephantDoc.h"
71 #include "scintillamacros.h"
72 #include "ElephantView.h"
73 #include "QuickFindAndReplaceDlg.h"
74
75 #include "globals.h"
76
77 #include "GUIComponents/GenericChildDialog.h"
78 #include "GUIComponents/DirDialog.h"
79 #include "GUIComponents/mfcfunctions.h"
80 #include "GUIComponents/ElephantEdit.h"
81 #include "Files.h"
82 #include "GetInputDlg.h"
83 #include "scintillamacros.h"
84 //#include "ElSettings/IniEx.h"
85 #include <afxmt.h>
86 #include "MainFrm.h"
87 //{{AFX_INSERT_LOCATION}}
88 // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
89
90
91
92 #endif // !defined(AFX_STDAFX_H__57181F90_B1A6_4AC9_97C7_BCB1225C7801__INCLUDED_)
Note: See TracBrowser for help on using the browser.