<?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>Lopple &#187; WIN32API</title>
	<atom:link href="http://www.lopple.jp/?cat=38&#038;feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.lopple.jp</link>
	<description>組込ソフト・機器開発／スマートフォンアプリ開発／Webシステム開発・保守</description>
	<lastBuildDate>Fri, 12 Jul 2019 07:40:18 +0000</lastBuildDate>
	<language>ja</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>メモ</title>
		<link>http://www.lopple.jp/?p=351</link>
		<comments>http://www.lopple.jp/?p=351#comments</comments>
		<pubDate>Thu, 07 Jun 2012 22:21:06 +0000</pubDate>
		<dc:creator>takezawa</dc:creator>
				<category><![CDATA[WIN32API]]></category>

		<guid isPermaLink="false">http://www.lopple.jp/?p=351</guid>
		<description><![CDATA[文字列 TCHAR foo[100] 文字列 _T("hoge") 文字列比較 _tcscmp]]></description>
			<content:encoded><![CDATA[<table border="0">
<tbody>
<tr>
<td>文字列</td>
<td>TCHAR foo[100]</td>
</tr>
<tr>
<td>文字列</td>
<td>_T("hoge")</td>
</tr>
<tr>
<td>文字列比較</td>
<td>_tcscmp</td>
</tr>
<tr>
<td></td>
<td></td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://www.lopple.jp/?feed=rss2&#038;p=351</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Win32API VC++ ウィンドウの列挙</title>
		<link>http://www.lopple.jp/?p=349</link>
		<comments>http://www.lopple.jp/?p=349#comments</comments>
		<pubDate>Thu, 07 Jun 2012 21:12:50 +0000</pubDate>
		<dc:creator>takezawa</dc:creator>
				<category><![CDATA[C++]]></category>
		<category><![CDATA[WIN32API]]></category>

		<guid isPermaLink="false">http://www.lopple.jp/?p=349</guid>
		<description><![CDATA[EnumWindowsProcの実装例]]></description>
			<content:encoded><![CDATA[<p>EnumWindowsProcの実装例</p>
<pre class="brush: cpp; title: ; notranslate">
BOOL CALLBACK myEnumWindowsProc(
  HWND hwnd,      // 親ウィンドウのハンドル
  LPARAM lParam   // アプリケーション定義の値
) {
	TCHAR buf[1024];

	TCHAR className[1024];
	TCHAR title[1024];

	ZeroMemory(className, sizeof className);
	ZeroMemory(buf, sizeof buf);
	ZeroMemory(title, sizeof title);

	GetClassName(hwnd, className, sizeof className); // クラス名
	GetWindowText(hwnd, title, sizeof title); // タイトル

	wsprintf(buf, _T(&quot;%d: %s: %s\n&quot;), hwnd, className, title);
	OutputDebugString(buf);
	return TRUE;
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.lopple.jp/?feed=rss2&#038;p=349</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
