﻿<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/"><channel><title>C++博客-牵牛散步-文章分类-ICE中间件技术</title><link>http://www.cppblog.com/klsmlzm/category/545.html</link><description>暂时无</description><language>zh-cn</language><lastBuildDate>Wed, 21 May 2008 08:36:47 GMT</lastBuildDate><pubDate>Wed, 21 May 2008 08:36:47 GMT</pubDate><ttl>60</ttl><item><title>ICE讲座资料,包括PPT和源程序[FOR PRIMER ONLY....:-)]</title><link>http://www.cppblog.com/klsmlzm/articles/31608.html</link><dc:creator>牵牛散步</dc:creator><author>牵牛散步</author><pubDate>Wed, 05 Sep 2007 04:06:00 GMT</pubDate><guid>http://www.cppblog.com/klsmlzm/articles/31608.html</guid><wfw:comment>http://www.cppblog.com/klsmlzm/comments/31608.html</wfw:comment><comments>http://www.cppblog.com/klsmlzm/articles/31608.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.cppblog.com/klsmlzm/comments/commentRss/31608.html</wfw:commentRss><trackback:ping>http://www.cppblog.com/klsmlzm/services/trackbacks/31608.html</trackback:ping><description><![CDATA[<img style="WIDTH: 1001px; HEIGHT: 752px" height=752 alt="" src="http://www.cppblog.com/images/cppblog_com/klsmlzm/ICE.jpg" width=1001 border=0><br><br><br><br>初学者可以看看,有PPT和一个HELLOWORLD的源程序.希望对大家有些帮助!<br><a href="http://www.cppblog.com/Files/klsmlzm/HelloWorld.rar">/Files/klsmlzm/HelloWorld.rar</a><br><br><a href="http://www.cppblog.com/Files/klsmlzm/ICE_PPT.rar">/Files/klsmlzm/ICE_PPT.rar</a><br>
<img src ="http://www.cppblog.com/klsmlzm/aggbug/31608.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cppblog.com/klsmlzm/" target="_blank">牵牛散步</a> 2007-09-05 12:06 <a href="http://www.cppblog.com/klsmlzm/articles/31608.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>在MFC工程中使用ICE</title><link>http://www.cppblog.com/klsmlzm/articles/5228.html</link><dc:creator>牵牛散步</dc:creator><author>牵牛散步</author><pubDate>Mon, 10 Apr 2006 05:06:00 GMT</pubDate><guid>http://www.cppblog.com/klsmlzm/articles/5228.html</guid><wfw:comment>http://www.cppblog.com/klsmlzm/comments/5228.html</wfw:comment><comments>http://www.cppblog.com/klsmlzm/articles/5228.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.cppblog.com/klsmlzm/comments/commentRss/5228.html</wfw:commentRss><trackback:ping>http://www.cppblog.com/klsmlzm/services/trackbacks/5228.html</trackback:ping><description><![CDATA[
		<p>在StdAfx.h头文件中加入Ice/Ice.h头文件,其它工程配置和别的MFC工程一样<br />StdAfx.h如:<br />// stdafx.h : include file for standard system include files,<br />// or project specific include files that are used frequently,<br />// but are changed infrequently</p>
		<p>#pragma once</p>
		<p>//<br />// For VC6 and STLport<br />//<br />#if !defined(NDEBUG) &amp;&amp; !defined(_STLP_DEBUG)<br />#   define _STLP_DEBUG<br />#endif</p>
		<p>#ifndef VC_EXTRALEAN<br />#define VC_EXTRALEAN  // Exclude rarely-used stuff from Windows headers<br />#endif</p>
		<p>// Modify the following defines if you have to target a platform prior to the ones specified below.<br />// Refer to MSDN for the latest info on corresponding values for different platforms.<br />#ifndef WINVER    // Allow use of features specific to Windows 95 and Windows NT 4 or later.<br />#define WINVER 0x0400  // Change this to the appropriate value to target Windows 98 and Windows 2000 or later.<br />#endif</p>
		<p>#ifndef _WIN32_WINNT  // Allow use of features specific to Windows NT 4 or later.<br />#define _WIN32_WINNT 0x0400  // Change this to the appropriate value to target Windows 98 and Windows 2000 or later.<br />#endif      </p>
		<p>#if 0<br />#ifndef _WIN32_WINDOWS  // Allow use of features specific to Windows 98 or later.<br />#define _WIN32_WINDOWS 0x0410 // Change this to the appropriate value to target Windows Me or later.<br />#endif</p>
		<p>#ifndef _WIN32_IE   // Allow use of features specific to IE 4.0 or later.<br />#define _WIN32_IE 0x0400 // Change this to the appropriate value to target IE 5.0 or later.<br />#endif<br />#endif</p>
		<p>#define _ATL_CSTRING_EXPLICIT_CONSTRUCTORS // some CString constructors will be explicit</p>
		<p>// turns off MFC's hiding of some common and often safely ignored warning messages<br />#define _AFX_ALL_WARNINGS</p>
		<p>#include &lt;afxwin.h&gt;         // MFC core and standard components<br />#include &lt;afxext.h&gt;         // MFC extensions</p>
		<p>#include &lt;afxdtctl.h&gt;  // MFC support for Internet Explorer 4 Common Controls<br />#ifndef _AFX_NO_AFXCMN_SUPPORT<br />#include &lt;afxcmn.h&gt;   // MFC support for Windows Common Controls<br />#endif // _AFX_NO_AFXCMN_SUPPORT</p>
		<p>#include &lt;Ice/Ice.h&gt;</p>
<img src ="http://www.cppblog.com/klsmlzm/aggbug/5228.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cppblog.com/klsmlzm/" target="_blank">牵牛散步</a> 2006-04-10 13:06 <a href="http://www.cppblog.com/klsmlzm/articles/5228.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>在VC++6.0 IDE中配置ICE工程[ ICE FOR VC++6.0 ]</title><link>http://www.cppblog.com/klsmlzm/articles/1632.html</link><dc:creator>牵牛散步</dc:creator><author>牵牛散步</author><pubDate>Thu, 08 Dec 2005 09:26:00 GMT</pubDate><guid>http://www.cppblog.com/klsmlzm/articles/1632.html</guid><wfw:comment>http://www.cppblog.com/klsmlzm/comments/1632.html</wfw:comment><comments>http://www.cppblog.com/klsmlzm/articles/1632.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.cppblog.com/klsmlzm/comments/commentRss/1632.html</wfw:commentRss><trackback:ping>http://www.cppblog.com/klsmlzm/services/trackbacks/1632.html</trackback:ping><description><![CDATA[<P>在VC++6.0中配置ICE还是比较麻烦的,经多次试验,按以下配置均可顺利通过编译:<BR><BR>一. project &gt;&gt;settings &gt;&gt; C/C++ <BR>分类各项的配置<BR>1.C++ Language<BR>勾选"允许时间类型信息(RTTI)"选项<BR>2.Code Generation<BR>在debug版本下:<BR>Use run-time library= Debug Multithreaded DLL<BR>在release版本下:<BR>Use run-time library=Multithreaded DLL<BR>二.project &gt;&gt;settings &gt;&gt; Link<BR>1.General<BR>对象/库模块:项中加入<BR>Ice.lib IceUtil.lib <BR>也可以在程序中加入:<BR>#ifdef _DEBUG<BR>#pragma comment(lib, "iced.lib")<BR>#pragma comment(lib, "iceutild.lib")<BR>#else<BR>#pragma comment(lib, "ice.lib")<BR>#pragma comment(lib, "iceutil.lib")<BR>#endif<BR><BR><BR><BR>以上配置在VC++6.0(SP6)英文版中测试通过</P><img src ="http://www.cppblog.com/klsmlzm/aggbug/1632.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cppblog.com/klsmlzm/" target="_blank">牵牛散步</a> 2005-12-08 17:26 <a href="http://www.cppblog.com/klsmlzm/articles/1632.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item></channel></rss>