<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:media="http://search.yahoo.com/mrss/"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Visual C++ &amp;&amp; C# - 四号程序员</title>
	<atom:link href="https://www.coder4.com/archives/category/ms%e7%9b%b8%e5%85%b3/feed" rel="self" type="application/rss+xml" />
	<link>https://www.coder4.com</link>
	<description>Keep It Simple and Stupid</description>
	<lastBuildDate>Sat, 30 Nov 2013 07:35:58 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.8.5</generator>
	<item>
		<title>Visual Studio主题模板</title>
		<link>https://www.coder4.com/archives/2739</link>
					<comments>https://www.coder4.com/archives/2739#respond</comments>
		
		<dc:creator><![CDATA[coder4]]></dc:creator>
		<pubDate>Tue, 20 Dec 2011 02:18:56 +0000</pubDate>
				<category><![CDATA[Visual C++ && C#]]></category>
		<category><![CDATA[Visual Studio]]></category>
		<category><![CDATA[配色方案]]></category>
		<guid isPermaLink="false">http://www.coder4.com/?p=2739</guid>

					<description><![CDATA[最近被迫用上了Visual Studio，看着白、小、搓的界面真不爽啊…… 推荐个网站，上面有关于Visual Studio的各种配色方案~ http://studiostyl.es[......] 继续阅读]]></description>
		
					<wfw:commentRss>https://www.coder4.com/archives/2739/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>推荐开源的INI文件解析器SimpleINI(c++)</title>
		<link>https://www.coder4.com/archives/2270</link>
					<comments>https://www.coder4.com/archives/2270#respond</comments>
		
		<dc:creator><![CDATA[coder4]]></dc:creator>
		<pubDate>Fri, 07 Oct 2011 15:57:47 +0000</pubDate>
				<category><![CDATA[C && C++]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Visual C++ && C#]]></category>
		<category><![CDATA[计算机技术]]></category>
		<category><![CDATA[INI]]></category>
		<category><![CDATA[解析]]></category>
		<category><![CDATA[跨平台]]></category>
		<guid isPermaLink="false">http://www.coder4.com/?p=2270</guid>

					<description><![CDATA[在Python中，INI解析这种问题交给ConfigParser就行了，非常简单，但是C++显然没有原生的类库解决问题。 Windows下的ini API不是可移植的，所以无视它。 推荐一个非常好用的，跨平台的INI解析器：SimpleINI，支持section，读、写、各种value，遍历等。 网址：http://code.jellycan.com/simpleini/ 旧代码废弃了，已经托管到github上：https://github.com/brofield/simp[......] 继续阅读]]></description>
		
					<wfw:commentRss>https://www.coder4.com/archives/2270/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Sniffer，关于Winpcap、Windows导致的大小端问题</title>
		<link>https://www.coder4.com/archives/985</link>
					<comments>https://www.coder4.com/archives/985#respond</comments>
		
		<dc:creator><![CDATA[coder4]]></dc:creator>
		<pubDate>Wed, 15 Sep 2010 06:51:42 +0000</pubDate>
				<category><![CDATA[Visual C++ && C#]]></category>
		<guid isPermaLink="false">http://www.coder4.com/?p=985</guid>

					<description><![CDATA[对于直接定义的Ethernet头 #pragma pack (0) typedef struct ether_header { u_char ether_dhost[6]; //dest address u_char ether_shost[6]; //src address u_short ether_type; //type }ether_header; 如果直接如下操作： eh = (ether_header*)pkt_data; switch(eh-&#62;ether[......] 继续阅读]]></description>
		
					<wfw:commentRss>https://www.coder4.com/archives/985/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>CreateProcessAsUser的1314错误解决方案</title>
		<link>https://www.coder4.com/archives/447</link>
					<comments>https://www.coder4.com/archives/447#comments</comments>
		
		<dc:creator><![CDATA[coder4]]></dc:creator>
		<pubDate>Thu, 18 Feb 2010 16:30:19 +0000</pubDate>
				<category><![CDATA[Visual C++ && C#]]></category>
		<category><![CDATA[1314]]></category>
		<category><![CDATA[1314错误]]></category>
		<category><![CDATA[CreateProcessAsUser]]></category>
		<guid isPermaLink="false">http://www.coder4.com/?p=447</guid>

					<description><![CDATA[目的：让程序运行在别的用户权限下。 2000下可以正常使用，但是对于xp网上的各种权限Token设置均无效&#8230;&#8230;所以，建议大家使用CreateProcessWithLogonW函数来进行这个操作。 如果你要对创建出的子程序进行重定向，请注意一定要设置STARTINFO中的hStdError = hSTDOUTwr;否则会爆出Invalid HANDLE的错误，而这在Createprocess中是不会报错的。。。。 另外，如果出现编译时&#8220;无法找到CreateP[......] 继续阅读]]></description>
		
					<wfw:commentRss>https://www.coder4.com/archives/447/feed</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
		<item>
		<title>为什么CDialogBar显示后，按钮是灰色的？</title>
		<link>https://www.coder4.com/archives/421</link>
					<comments>https://www.coder4.com/archives/421#respond</comments>
		
		<dc:creator><![CDATA[coder4]]></dc:creator>
		<pubDate>Thu, 18 Feb 2010 16:16:46 +0000</pubDate>
				<category><![CDATA[Visual C++ && C#]]></category>
		<category><![CDATA[CDialogBar]]></category>
		<category><![CDATA[按钮]]></category>
		<category><![CDATA[无效]]></category>
		<category><![CDATA[灰色]]></category>
		<guid isPermaLink="false">http://www.coder4.com/?p=421</guid>

					<description><![CDATA[BEGIN_MESSAGE_MAP(CLeftDlgBar, CDialogBar) ON_UPDATE_COMMAND_UI(IDC_BUTTON1,OnUpdateButton1) END_MESSAGE_MAP() void CLeftDlgBar::OnUpdateButton1(CCmdUI* pCmdUI) { pCmdUI-&#62;Enable(TRUE); //using pCmdUI-&#62;SetText you can set the button text t[......] 继续阅读]]></description>
		
					<wfw:commentRss>https://www.coder4.com/archives/421/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>[转载]GCC编译参数</title>
		<link>https://www.coder4.com/archives/417</link>
					<comments>https://www.coder4.com/archives/417#respond</comments>
		
		<dc:creator><![CDATA[coder4]]></dc:creator>
		<pubDate>Thu, 18 Feb 2010 16:13:37 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Visual C++ && C#]]></category>
		<category><![CDATA[gcc]]></category>
		<category><![CDATA[编译器]]></category>
		<guid isPermaLink="false">http://www.coder4.com/?p=417</guid>

					<description><![CDATA[&#160; &#160; &#160; &#160; GCC 使用指南 使用语法： gcc [ option &#124; filename ]... 　　 g++ [ option &#124; filename ]... 其中 option 为 gcc[......] 继续阅读]]></description>
		
					<wfw:commentRss>https://www.coder4.com/archives/417/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>gcc 编译器 测试日志 (Test for SPL System)</title>
		<link>https://www.coder4.com/archives/415</link>
					<comments>https://www.coder4.com/archives/415#respond</comments>
		
		<dc:creator><![CDATA[coder4]]></dc:creator>
		<pubDate>Thu, 18 Feb 2010 16:12:37 +0000</pubDate>
				<category><![CDATA[C && C++]]></category>
		<category><![CDATA[Visual C++ && C#]]></category>
		<category><![CDATA[gcc]]></category>
		<category><![CDATA[win]]></category>
		<guid isPermaLink="false">http://www.coder4.com/?p=415</guid>

					<description><![CDATA[测试目的：为SPL System的前期目标做简单的可行性测试 测试日志： 1 using gcc (ver produced by Dev c++ 4.9.9) 2 编译 调用 g+.exe 参数如下 g++.exe &#34;D:\未命名1.cpp&#34; -o &#34;D:\未命名1.exe&#34;&#160;&#160;&#160;&#160; -I&#34;D:\TEST\lib\gcc\mingw32\3.4.2\include&#34;&#160;&#160; -I[......] 继续阅读]]></description>
		
					<wfw:commentRss>https://www.coder4.com/archives/415/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>[转载]VC++中dll的应用基础</title>
		<link>https://www.coder4.com/archives/413</link>
					<comments>https://www.coder4.com/archives/413#respond</comments>
		
		<dc:creator><![CDATA[coder4]]></dc:creator>
		<pubDate>Thu, 18 Feb 2010 16:11:57 +0000</pubDate>
				<category><![CDATA[Visual C++ && C#]]></category>
		<category><![CDATA[DLL]]></category>
		<category><![CDATA[VC]]></category>
		<category><![CDATA[调用]]></category>
		<guid isPermaLink="false">http://www.coder4.com/?p=413</guid>

					<description><![CDATA[篇一 我们在调用DLL时所需的DLL文件必须位于以下三个目录之一： 　　(1)Windows的系统目录：\windows\system； 　　(2)DOS中path所指出的任何目录； 　　(3)程序所在的目录。 　　一、动态链接库的结构 　　动态链接库中定义有两种函数：导出函数(export function)和内部函数(internal function)，导出函数可以被其它模块调用，内部函数只能在库内部使用。我们在用C＋＋定制动态库文件时，[......] 继续阅读]]></description>
		
					<wfw:commentRss>https://www.coder4.com/archives/413/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>VC+ADO的两点开发心得</title>
		<link>https://www.coder4.com/archives/411</link>
					<comments>https://www.coder4.com/archives/411#respond</comments>
		
		<dc:creator><![CDATA[coder4]]></dc:creator>
		<pubDate>Thu, 18 Feb 2010 16:11:16 +0000</pubDate>
				<category><![CDATA[Visual C++ && C#]]></category>
		<category><![CDATA[ADO]]></category>
		<category><![CDATA[NoSQL && RDMBS]]></category>
		<category><![CDATA[VC]]></category>
		<guid isPermaLink="false">http://www.coder4.com/?p=411</guid>

					<description><![CDATA[1.vc用ado连接数据库时候，recoderset返回的variant（com类型如何转化为cstring类型）？ Cstring str((LPCSTR)(_bstr_t)m_pRecoderet-&#62;GetCollect(&#34;姓名&#34;)); 2.关于vc连接mysql数据库出现乱码 在odbc设置的时候，在Connect Option 中Initial Statement中添加set names gbk。 至少我的是mysql5 没有再出现乱码。[......] 继续阅读]]></description>
		
					<wfw:commentRss>https://www.coder4.com/archives/411/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>【转载】vc6下安装stlport和boost库</title>
		<link>https://www.coder4.com/archives/409</link>
					<comments>https://www.coder4.com/archives/409#respond</comments>
		
		<dc:creator><![CDATA[coder4]]></dc:creator>
		<pubDate>Thu, 18 Feb 2010 16:10:39 +0000</pubDate>
				<category><![CDATA[C && C++]]></category>
		<category><![CDATA[Visual C++ && C#]]></category>
		<category><![CDATA[boost]]></category>
		<category><![CDATA[stlport]]></category>
		<category><![CDATA[VC]]></category>
		<guid isPermaLink="false">http://www.coder4.com/?p=409</guid>

					<description><![CDATA[之前分别写了这两个库的编译，发现写得不好，有很多错误，大有误人之嫌，所以利用今天的时间重新整理一下。 首先介绍如何编译STLport5.1.3： 1 下载解压缩。 2 进入命令行。首先到vc98\bin\目录下执行vcvars32.bat。 3 进入stlport目录下的\build\lib\目录。执行configure.bat -c msvc6。这里如果将-c 改为icl，就可以用intel的icc进行编译。 4 执行nmake /fmsvc.mak install就开始编译了。[......] 继续阅读]]></description>
		
					<wfw:commentRss>https://www.coder4.com/archives/409/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
