<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Keylogging fun for C/C++ Beginners</title>
	<atom:link href="http://www.levoltz.com/2007/12/12/keylogging-fun-for-cc-beginners/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.levoltz.com/2007/12/12/keylogging-fun-for-cc-beginners/</link>
	<description>iPhone Games, Wordpress Themes</description>
	<lastBuildDate>Thu, 18 Mar 2010 03:37:49 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: ethan</title>
		<link>http://www.levoltz.com/2007/12/12/keylogging-fun-for-cc-beginners/comment-page-1/#comment-17278</link>
		<dc:creator>ethan</dc:creator>
		<pubDate>Tue, 12 Jan 2010 05:14:36 +0000</pubDate>
		<guid isPermaLink="false">http://bothack.wordpress.com/2007/12/12/keylogging-fun-for-cc-beginners/#comment-17278</guid>
		<description>the includes didnt copy properly, they are stdio.h and windows.h</description>
		<content:encoded><![CDATA[<p>the includes didnt copy properly, they are stdio.h and windows.h</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ethan</title>
		<link>http://www.levoltz.com/2007/12/12/keylogging-fun-for-cc-beginners/comment-page-1/#comment-17277</link>
		<dc:creator>ethan</dc:creator>
		<pubDate>Tue, 12 Jan 2010 05:12:57 +0000</pubDate>
		<guid isPermaLink="false">http://bothack.wordpress.com/2007/12/12/keylogging-fun-for-cc-beginners/#comment-17277</guid>
		<description>Hi, i was testing the GetAsyncKeyState function,
however i am having some problems

#include 
#include 

int main()
{
	int quit = 0;

	while(!quit){
		if((GetAsyncKeyState(&#039;A&#039;) &amp; 0x8000) == 0)
			printf(&quot;A not pressed&quot;);
		else{
			printf(&quot;A pressed      &quot;);
			quit = 1;
		}
		if((GetAsyncKeyState(&#039;B&#039;) &amp; 0x8000) == 0)
			printf(&quot;    B not pressed\r&quot;);
		else
			printf(&quot;    B pressed      \r&quot;);
	}

	printf(&quot;\n&quot;);

	return 0;
}

when I press the B key, nothing happens, however when i press the A key, I get what i would expect, the output &#039;A key pressed&#039; and the program closing.
Why is this? Please help</description>
		<content:encoded><![CDATA[<p>Hi, i was testing the GetAsyncKeyState function,<br />
however i am having some problems</p>
<p>#include<br />
#include </p>
<p>int main()<br />
{<br />
	int quit = 0;</p>
<p>	while(!quit){<br />
		if((GetAsyncKeyState(&#8216;A&#8217;) &amp; 0&#215;8000) == 0)<br />
			printf(&#8220;A not pressed&#8221;);<br />
		else{<br />
			printf(&#8220;A pressed      &#8220;);<br />
			quit = 1;<br />
		}<br />
		if((GetAsyncKeyState(&#8216;B&#8217;) &amp; 0&#215;8000) == 0)<br />
			printf(&#8221;    B not pressed\r&#8221;);<br />
		else<br />
			printf(&#8221;    B pressed      \r&#8221;);<br />
	}</p>
<p>	printf(&#8220;\n&#8221;);</p>
<p>	return 0;<br />
}</p>
<p>when I press the B key, nothing happens, however when i press the A key, I get what i would expect, the output &#8216;A key pressed&#8217; and the program closing.<br />
Why is this? Please help</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: levoltz</title>
		<link>http://www.levoltz.com/2007/12/12/keylogging-fun-for-cc-beginners/comment-page-1/#comment-8073</link>
		<dc:creator>levoltz</dc:creator>
		<pubDate>Sat, 25 Jul 2009 15:20:11 +0000</pubDate>
		<guid isPermaLink="false">http://bothack.wordpress.com/2007/12/12/keylogging-fun-for-cc-beginners/#comment-8073</guid>
		<description>@alex, it would.</description>
		<content:encoded><![CDATA[<p>@alex, it would.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: alex</title>
		<link>http://www.levoltz.com/2007/12/12/keylogging-fun-for-cc-beginners/comment-page-1/#comment-8069</link>
		<dc:creator>alex</dc:creator>
		<pubDate>Sat, 25 Jul 2009 13:45:45 +0000</pubDate>
		<guid isPermaLink="false">http://bothack.wordpress.com/2007/12/12/keylogging-fun-for-cc-beginners/#comment-8069</guid>
		<description>will this run in vista?</description>
		<content:encoded><![CDATA[<p>will this run in vista?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pjrpbrjx</title>
		<link>http://www.levoltz.com/2007/12/12/keylogging-fun-for-cc-beginners/comment-page-1/#comment-6205</link>
		<dc:creator>Pjrpbrjx</dc:creator>
		<pubDate>Fri, 08 May 2009 10:29:33 +0000</pubDate>
		<guid isPermaLink="false">http://bothack.wordpress.com/2007/12/12/keylogging-fun-for-cc-beginners/#comment-6205</guid>
		<description>mOjMip comment4 ,</description>
		<content:encoded><![CDATA[<p>mOjMip comment4 ,</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Canon T1i</title>
		<link>http://www.levoltz.com/2007/12/12/keylogging-fun-for-cc-beginners/comment-page-1/#comment-6204</link>
		<dc:creator>Canon T1i</dc:creator>
		<pubDate>Sun, 29 Mar 2009 16:31:29 +0000</pubDate>
		<guid isPermaLink="false">http://bothack.wordpress.com/2007/12/12/keylogging-fun-for-cc-beginners/#comment-6204</guid>
		<description>wowwwwwwww thank u loooot for such a great and useful info
you&#039;re info GURU :D
GOOD LUCK to you</description>
		<content:encoded><![CDATA[<p>wowwwwwwww thank u loooot for such a great and useful info<br />
you&#8217;re info GURU <img src='http://www.levoltz.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /><br />
GOOD LUCK to you</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 1337</title>
		<link>http://www.levoltz.com/2007/12/12/keylogging-fun-for-cc-beginners/comment-page-1/#comment-6203</link>
		<dc:creator>1337</dc:creator>
		<pubDate>Wed, 24 Dec 2008 18:15:41 +0000</pubDate>
		<guid isPermaLink="false">http://bothack.wordpress.com/2007/12/12/keylogging-fun-for-cc-beginners/#comment-6203</guid>
		<description>mayank,

if you weren&#039;t such an idiot you would use a search engine and learn how to program. Running around on forums/newsgroups asking blatantly how to hax makes alot of people very suspicious...

your a tard.</description>
		<content:encoded><![CDATA[<p>mayank,</p>
<p>if you weren&#8217;t such an idiot you would use a search engine and learn how to program. Running around on forums/newsgroups asking blatantly how to hax makes alot of people very suspicious&#8230;</p>
<p>your a tard.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Moezzie</title>
		<link>http://www.levoltz.com/2007/12/12/keylogging-fun-for-cc-beginners/comment-page-1/#comment-6202</link>
		<dc:creator>Moezzie</dc:creator>
		<pubDate>Sun, 31 Aug 2008 16:09:39 +0000</pubDate>
		<guid isPermaLink="false">http://bothack.wordpress.com/2007/12/12/keylogging-fun-for-cc-beginners/#comment-6202</guid>
		<description>Great tutorial mate.
Is there a similar way to do this in a Unix environment?</description>
		<content:encoded><![CDATA[<p>Great tutorial mate.<br />
Is there a similar way to do this in a Unix environment?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bulanesckie</title>
		<link>http://www.levoltz.com/2007/12/12/keylogging-fun-for-cc-beginners/comment-page-1/#comment-6201</link>
		<dc:creator>Bulanesckie</dc:creator>
		<pubDate>Thu, 17 Jul 2008 15:49:36 +0000</pubDate>
		<guid isPermaLink="false">http://bothack.wordpress.com/2007/12/12/keylogging-fun-for-cc-beginners/#comment-6201</guid>
		<description>Hi Guys I am new in c++ which book do you recommend for me as i want to start hacking

bulanesckie</description>
		<content:encoded><![CDATA[<p>Hi Guys I am new in c++ which book do you recommend for me as i want to start hacking</p>
<p>bulanesckie</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mayank</title>
		<link>http://www.levoltz.com/2007/12/12/keylogging-fun-for-cc-beginners/comment-page-1/#comment-6199</link>
		<dc:creator>mayank</dc:creator>
		<pubDate>Thu, 28 Feb 2008 03:17:28 +0000</pubDate>
		<guid isPermaLink="false">http://bothack.wordpress.com/2007/12/12/keylogging-fun-for-cc-beginners/#comment-6199</guid>
		<description>hey guys i am a fresher and i want to know how to hack passwords,how to hack other comp’s dextop,how to get data from other comp..can i do this .if yes then reply me i want to bocome a comp expert .Will u teach me.</description>
		<content:encoded><![CDATA[<p>hey guys i am a fresher and i want to know how to hack passwords,how to hack other comp’s dextop,how to get data from other comp..can i do this .if yes then reply me i want to bocome a comp expert .Will u teach me.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
