diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2005-07-13 17:40:46 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2005-07-13 17:40:46 +0000 |
commit | 6535f926382842de14a36f1354cb08c86cbab28c (patch) | |
tree | 50d98021e0e50a1539a7cc35594fc63c58ddc361 /cppe/demo/IceE/chat/stdafx.h | |
parent | Don't copy the testCommon libs. (diff) | |
download | ice-6535f926382842de14a36f1354cb08c86cbab28c.tar.bz2 ice-6535f926382842de14a36f1354cb08c86cbab28c.tar.xz ice-6535f926382842de14a36f1354cb08c86cbab28c.zip |
Commited first stab at MFC chat demo
Diffstat (limited to 'cppe/demo/IceE/chat/stdafx.h')
-rw-r--r-- | cppe/demo/IceE/chat/stdafx.h | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/cppe/demo/IceE/chat/stdafx.h b/cppe/demo/IceE/chat/stdafx.h new file mode 100644 index 00000000000..df513810f23 --- /dev/null +++ b/cppe/demo/IceE/chat/stdafx.h @@ -0,0 +1,65 @@ +// stdafx.h : include file for standard system include files,
+// or project specific include files that are used frequently, but
+// are changed infrequently
+//
+
+
+#if !defined(AFX_STDAFX_H__CCAD4B79_862C_4DFB_A13B_E56154F5C0B8__INCLUDED_)
+#define AFX_STDAFX_H__CCAD4B79_862C_4DFB_A13B_E56154F5C0B8__INCLUDED_
+
+#if _MSC_VER >= 1000
+#pragma once
+#endif // _MSC_VER >= 1000
+
+#ifndef UNDER_CE
+
+#if !defined(NDEBUG) && !defined(_STLP_DEBUG)
+# define _STLP_DEBUG
+#endif
+
+#ifndef WINVER
+#define WINVER 0x0400
+#endif
+
+#ifndef _WIN32_WINNT
+#define _WIN32_WINNT 0x0400
+#endif
+
+#else
+
+#if (_WIN32_WCE <= 200)
+#error : This project does not support MFCCE 2.00 or earlier, because it requires CControlBar, available only in MFCCE 2.01 or later
+#endif
+
+//
+// _STLP_USE_MFC must be defined. We don't use iostreams so lets turn that off too.
+//
+#define _STLP_USE_MFC
+#define _STLP_NO_OWN_IOSTREAMS
+#define _STLP_NO_NEW_IOSTREAMS
+#define _STLP_NO_IOSTREAMS
+
+#endif // UNDER_CE
+
+#define VC_EXTRALEAN // Exclude rarely-used stuff from Windows headers
+
+#include <afxwin.h> // MFC core and standard components
+#include <afxext.h> // MFC extensions
+
+#if defined(_WIN32_WCE) && (_WIN32_WCE >= 211) && (_AFXDLL)
+#include <afxdtctl.h> // MFC support for Internet Explorer 4 Common Controls
+#endif
+
+
+#ifndef _AFX_NO_AFXCMN_SUPPORT
+#include <afxcmn.h> // MFC support for Windows Common Controls
+#endif // _AFX_NO_AFXCMN_SUPPORT
+
+#include <afxsock.h> // MFC socket extensions
+
+//{{AFX_INSERT_LOCATION}}
+// Microsoft eMbedded Visual C++ will insert additional declarations immediately before the previous line.
+
+#include <IceE/IceE.h>
+
+#endif // !defined(AFX_STDAFX_H__CCAD4B79_862C_4DFB_A13B_E56154F5C0B8__INCLUDED_)
|