<?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: BOOL, Boolean and Integer</title>
	<atom:link href="http://blog.delphi-jedi.net/2008/09/25/bool-boolean-and-integer/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.delphi-jedi.net/2008/09/25/bool-boolean-and-integer/</link>
	<description>Joint Endeavor of Delphi Innovators of Windows Programming</description>
	<lastBuildDate>Thu, 24 Nov 2011 17:58:16 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: GunSmoker</title>
		<link>http://blog.delphi-jedi.net/2008/09/25/bool-boolean-and-integer/comment-page-1/#comment-61982</link>
		<dc:creator>GunSmoker</dc:creator>
		<pubDate>Wed, 01 Dec 2010 04:18:19 +0000</pubDate>
		<guid isPermaLink="false">http://blog.delphi-jedi.net/?p=263#comment-61982</guid>
		<description>A quality Central report: http://qc.embarcadero.com/wc/qcmain.aspx?d=72852</description>
		<content:encoded><![CDATA[<p>A quality Central report: <a href="http://qc.embarcadero.com/wc/qcmain.aspx?d=72852" rel="nofollow">http://qc.embarcadero.com/wc/qcmain.aspx?d=72852</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Christian Wimmer</title>
		<link>http://blog.delphi-jedi.net/2008/09/25/bool-boolean-and-integer/comment-page-1/#comment-15994</link>
		<dc:creator>Christian Wimmer</dc:creator>
		<pubDate>Sat, 14 Mar 2009 23:37:16 +0000</pubDate>
		<guid isPermaLink="false">http://blog.delphi-jedi.net/?p=263#comment-15994</guid>
		<description>A long time ago the CreateMutex issue was fixed by Marcel. See JwaWinBase::CreateMutexA/W
But I tried it again in Delphi 7 and you know: I had the same problem. It seems that at the times Marcel created the patch, LongBool was the correct way to solve this problem (Maybe &lt; D5). However I changed the declaration of the wrapper function from LongBool to DWORD (to remain the size of the boolean parameter (4)). And now it works.

&lt;strong&gt;The fix was applied to trunk revision 760.&lt;/strong&gt;

</description>
		<content:encoded><![CDATA[<p>A long time ago the CreateMutex issue was fixed by Marcel. See JwaWinBase::CreateMutexA/W<br />
But I tried it again in Delphi 7 and you know: I had the same problem. It seems that at the times Marcel created the patch, LongBool was the correct way to solve this problem (Maybe < D5). However I changed the declaration of the wrapper function from LongBool to DWORD (to remain the size of the boolean parameter (4)). And now it works.</p>
<p><strong>The fix was applied to trunk revision 760.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: GunSmoker</title>
		<link>http://blog.delphi-jedi.net/2008/09/25/bool-boolean-and-integer/comment-page-1/#comment-15993</link>
		<dc:creator>GunSmoker</dc:creator>
		<pubDate>Sat, 14 Mar 2009 22:40:46 +0000</pubDate>
		<guid isPermaLink="false">http://blog.delphi-jedi.net/?p=263#comment-15993</guid>
		<description>BTW, do you aware of this issue:
http://sourceforge.net/tracker/index.php?func=detail&amp;aid=2675572&amp;group_id=121894&amp;atid=694029 ?</description>
		<content:encoded><![CDATA[<p>BTW, do you aware of this issue:<br />
<a href="http://sourceforge.net/tracker/index.php?func=detail&#038;aid=2675572&#038;group_id=121894&#038;atid=694029" rel="nofollow">http://sourceforge.net/tracker/index.php?func=detail&#038;aid=2675572&#038;group_id=121894&#038;atid=694029</a> ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Christian Wimmer</title>
		<link>http://blog.delphi-jedi.net/2008/09/25/bool-boolean-and-integer/comment-page-1/#comment-6944</link>
		<dc:creator>Christian Wimmer</dc:creator>
		<pubDate>Fri, 26 Sep 2008 10:41:10 +0000</pubDate>
		<guid isPermaLink="false">http://blog.delphi-jedi.net/?p=263#comment-6944</guid>
		<description>No, you&#039;re right. It should be -1. I fixed that issue. Thanks. Originally I wanted to add the Boolean type at first, then I forgot it. Now I readded and fixed it.</description>
		<content:encoded><![CDATA[<p>No, you&#8217;re right. It should be -1. I fixed that issue. Thanks. Originally I wanted to add the Boolean type at first, then I forgot it. Now I readded and fixed it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: GunSmoker</title>
		<link>http://blog.delphi-jedi.net/2008/09/25/bool-boolean-and-integer/comment-page-1/#comment-6937</link>
		<dc:creator>GunSmoker</dc:creator>
		<pubDate>Fri, 26 Sep 2008 07:50:57 +0000</pubDate>
		<guid isPermaLink="false">http://blog.delphi-jedi.net/?p=263#comment-6937</guid>
		<description>I don&#039;t get it.

BOOL/LongBool
  value := true;
  mov [value],$ffffffff

And in Summary you say that &quot;BOOL in Delphi&quot; is &quot;LongBool&quot; and True is &quot;1&quot;.

First you say True is -1 and then you say True is 1.

Is this some kind of mistake or I just don&#039;t understand something?</description>
		<content:encoded><![CDATA[<p>I don&#8217;t get it.</p>
<p>BOOL/LongBool<br />
  value := true;<br />
  mov [value],$ffffffff</p>
<p>And in Summary you say that &#8220;BOOL in Delphi&#8221; is &#8220;LongBool&#8221; and True is &#8220;1&#8243;.</p>
<p>First you say True is -1 and then you say True is 1.</p>
<p>Is this some kind of mistake or I just don&#8217;t understand something?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

