summaryrefslogtreecommitdiffabout
path: root/outport/StdAfx.h
Unidiff
Diffstat (limited to 'outport/StdAfx.h') (more/less context) (show whitespace changes)
-rw-r--r--outport/StdAfx.h60
1 files changed, 60 insertions, 0 deletions
diff --git a/outport/StdAfx.h b/outport/StdAfx.h
new file mode 100644
index 0000000..c28b0d9
--- a/dev/null
+++ b/outport/StdAfx.h
@@ -0,0 +1,60 @@
1/*
2 Copyright 2001 Justin Kirby
3 This file is part of Outport.
4
5 Outport is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
9
10 Outport is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with olexp; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18
19*/
20// stdafx.h : include file for standard system include files,
21// or project specific include files that are used frequently, but
22// are changed infrequently
23//
24
25#ifndef OLEXP_STDAFX_H
26#define OLEXP_STDAFX_H
27
28#if _MSC_VER > 1000
29#pragma once
30#endif // _MSC_VER > 1000
31
32 #define VC_EXTRALEAN // Exclude rarely-used stuff from Windows headers
33
34//#include <afxwin.h> // MFC core and standard components
35#include <afxext.h> // MFC extensions
36#include <atlbase.h>
37//CComModule _Module;
38#include <atlcom.h>
39#include <afxdisp.h> // MFC Automation classes
40 #include <afxdtctl.h> // MFC support for Internet Explorer 4 Common Controls
41#ifndef _AFX_NO_AFXCMN_SUPPORT
42 #include <afxcmn.h> // MFC support for Windows Common Controls
43#include <comdef.h>
44#endif // _AFX_NO_AFXCMN_SUPPORT
45
46#include <afxtempl.h>
47#include "resource.h"
48
49#ifndef IMPLEMENT_OLECREATE2
50#define IMPLEMENT_OLECREATE2(class_name, external_name, l, w1, w2, b1, b2, b3, b4, b5, b6, b7, b8) \
51 AFX_DATADEF COleObjectFactory class_name::factory(class_name::guid, \
52 RUNTIME_CLASS(class_name), TRUE, _T(external_name)); \
53 const AFX_DATADEF GUID class_name::guid = \
54 { l, w1, w2, { b1, b2, b3, b4, b5, b6, b7, b8 } };
55#endif // IMPLEMENT_OLECREATE2
56
57//{{AFX_INSERT_LOCATION}}
58// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
59
60#endif // !defined(AFX_STDAFX_H__62F25EC8_1510_4268_9D06_BF10E2FCCC70__INCLUDED_)