<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	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>零度x&#039;s blog &#187; 汇编</title>
	<atom:link href="http://www.lingdux.com/tag/%e6%b1%87%e7%bc%96/feed" rel="self" type="application/rss+xml" />
	<link>http://www.lingdux.com</link>
	<description>Take it slowly,it&#039;s OK,it&#039;s OK.</description>
	<lastBuildDate>Wed, 09 Mar 2011 14:16:17 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>VC内嵌汇编</title>
		<link>http://www.lingdux.com/2009/135.html</link>
		<comments>http://www.lingdux.com/2009/135.html#comments</comments>
		<pubDate>Fri, 27 Nov 2009 02:44:56 +0000</pubDate>
		<dc:creator>零度x</dc:creator>
				<category><![CDATA[VC学习]]></category>
		<category><![CDATA[VC]]></category>
		<category><![CDATA[内嵌]]></category>
		<category><![CDATA[汇编]]></category>

		<guid isPermaLink="false">http://www.lingdux.com/?p=135</guid>
		<description><![CDATA[#include “windows.h”

#include “tchar.h”

WCHAR a[]=L”123&#8243;;

<span class="readmore"><a href="http://www.lingdux.com/2009/135.html" title="VC内嵌汇编">阅读全文——共356字</a></span>]]></description>
			<content:encoded><![CDATA[<p>#include “windows.h”<br />
#include “tchar.h”<br />
WCHAR a[]=L”123&#8243;;<br />
int WINAPI MyFonc(HINSTANCE hInstance,HINSTANCE hPrevInstance,LPSTR lpCmdLine,int nCmdShow)<br />
{<br />
 WCHAR b[]=L”456&#8243;;<br />
 HMODULE hmodule=LoadLibrary(L”user32.dll”);<br />
 FARPROC addr=GetProcAddress(hmodule,”MessageBoxW”);<br />
 __asm<br />
 {<br />
  push 0<br />
  mov eax,offset a//全局用offset<br />
  push eax<br />
  lea eax,b//局部用lea<br />
  push eax<br />
  push 0<br />
  call addr<br />
 }<br />
 return 0;<br />
}</p>
<p><span id="more-135"></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.lingdux.com/2009/135.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

