<?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: Pre-Release of JEDI API 2.2 &amp; WSCL 0.9.2</title>
	<atom:link href="http://blog.delphi-jedi.net/2008/08/30/pre-release-of-jedi-api-22-wscl-092-2/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.delphi-jedi.net/2008/08/30/pre-release-of-jedi-api-22-wscl-092-2/</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: Christian Wimmer</title>
		<link>http://blog.delphi-jedi.net/2008/08/30/pre-release-of-jedi-api-22-wscl-092-2/comment-page-1/#comment-13778</link>
		<dc:creator>Christian Wimmer</dc:creator>
		<pubDate>Mon, 19 Jan 2009 17:46:25 +0000</pubDate>
		<guid isPermaLink="false">http://blog.delphi-jedi.net/?p=254#comment-13778</guid>
		<description>Thank you for your report of the new types. I&#039;ve added them both to JwaNative.pas. However I cannot add all types and currently unsupported functions from the DDK on my own.
If you want to provide more conversions send me a &lt;a href=&quot;http://mailhide.recaptcha.net/d?k=01MeKrDPlF4UMY4OOGe4JcPA==&amp;c=qu6RnFAF5jjxh0bbfE7ymCJCa5TFUIfZS6RdKFzWmME=&quot; rel=&quot;nofollow&quot;&gt;mail&lt;/a&gt; first - before you want to start! There are some rules you should know to avoid additional work.

Furthermore: new features and bugs should be added using the &lt;a href=&quot;http://homepages.codegear.com/jedi/issuetracker/main_page.php&quot; rel=&quot;nofollow&quot;&gt;JEDI Issue Tracker&lt;/a&gt; and assigned to me.

Thanks for reading so far :)</description>
		<content:encoded><![CDATA[<p>Thank you for your report of the new types. I&#8217;ve added them both to JwaNative.pas. However I cannot add all types and currently unsupported functions from the DDK on my own.<br />
If you want to provide more conversions send me a <a href="http://mailhide.recaptcha.net/d?k=01MeKrDPlF4UMY4OOGe4JcPA==&#038;c=qu6RnFAF5jjxh0bbfE7ymCJCa5TFUIfZS6RdKFzWmME=" rel="nofollow">mail</a> first &#8211; before you want to start! There are some rules you should know to avoid additional work.</p>
<p>Furthermore: new features and bugs should be added using the <a href="http://homepages.codegear.com/jedi/issuetracker/main_page.php" rel="nofollow">JEDI Issue Tracker</a> and assigned to me.</p>
<p>Thanks for reading so far <img src='http://blog.delphi-jedi.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: WarMaker</title>
		<link>http://blog.delphi-jedi.net/2008/08/30/pre-release-of-jedi-api-22-wscl-092-2/comment-page-1/#comment-13748</link>
		<dc:creator>WarMaker</dc:creator>
		<pubDate>Mon, 19 Jan 2009 08:56:53 +0000</pubDate>
		<guid isPermaLink="false">http://blog.delphi-jedi.net/?p=254#comment-13748</guid>
		<description>Hello!
Your Win32API library is great!
But some items is missing in JwaNative.pas
There are:
----------------
type
  _KEY_FULL_INFORMATION = packed record
    LastWriteTime: LARGE_INTEGER;
    TitleIndex: ULONG;
    ClassOffset: ULONG;
    ClassLength: ULONG;
    SubKeys: ULONG;
    MaxNameLen: ULONG;
    MaxClassLen: ULONG;
    Values: ULONG;
    MaxValueNameLen: ULONG;
    MaxValueDataLen: ULONG;
    Class_: Array[0..0] of WCHAR;
  end;
  PKEY_FULL_INFORMATION = ^_KEY_FULL_INFORMATION;

  _KEY_VALUE_FULL_INFORMATION = packed record
    TitleIndex: ULONG;
    Type_: ULONG;
    DataOffset: ULONG;
    DataLength: ULONG;
    NameLength: ULONG;
    Name: Array[0..0] of WCHAR;
  end;
  PKEY_VALUE_FULL_INFORMATION = ^_KEY_VALUE_FULL_INFORMATION;
---------------
and similar!
THX.</description>
		<content:encoded><![CDATA[<p>Hello!<br />
Your Win32API library is great!<br />
But some items is missing in JwaNative.pas<br />
There are:<br />
&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
type<br />
  _KEY_FULL_INFORMATION = packed record<br />
    LastWriteTime: LARGE_INTEGER;<br />
    TitleIndex: ULONG;<br />
    ClassOffset: ULONG;<br />
    ClassLength: ULONG;<br />
    SubKeys: ULONG;<br />
    MaxNameLen: ULONG;<br />
    MaxClassLen: ULONG;<br />
    Values: ULONG;<br />
    MaxValueNameLen: ULONG;<br />
    MaxValueDataLen: ULONG;<br />
    Class_: Array[0..0] of WCHAR;<br />
  end;<br />
  PKEY_FULL_INFORMATION = ^_KEY_FULL_INFORMATION;</p>
<p>  _KEY_VALUE_FULL_INFORMATION = packed record<br />
    TitleIndex: ULONG;<br />
    Type_: ULONG;<br />
    DataOffset: ULONG;<br />
    DataLength: ULONG;<br />
    NameLength: ULONG;<br />
    Name: Array[0..0] of WCHAR;<br />
  end;<br />
  PKEY_VALUE_FULL_INFORMATION = ^_KEY_VALUE_FULL_INFORMATION;<br />
&#8212;&#8212;&#8212;&#8212;&#8212;<br />
and similar!<br />
THX.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Christian Wimmer</title>
		<link>http://blog.delphi-jedi.net/2008/08/30/pre-release-of-jedi-api-22-wscl-092-2/comment-page-1/#comment-11019</link>
		<dc:creator>Christian Wimmer</dc:creator>
		<pubDate>Wed, 03 Dec 2008 11:13:38 +0000</pubDate>
		<guid isPermaLink="false">http://blog.delphi-jedi.net/?p=254#comment-11019</guid>
		<description>If you had given me your e-mail adress I could have answered directly. I&#039;m always happy when people send me bug reports but the comments area is not the right place!!
So send a &lt;a href=&quot;http://mailhide.recaptcha.net/d?k=01MeKrDPlF4UMY4OOGe4JcPA==&amp;c=qu6RnFAF5jjxh0bbfE7ymCJCa5TFUIfZS6RdKFzWmME=&quot; rel=&quot;nofollow&quot;&gt;mail &lt;/a&gt; or use the &lt;a href=&quot;http://homepages.codegear.com/jedi/issuetracker/main_page.php&quot; rel=&quot;nofollow&quot;&gt;JEDI Issue Tracker&lt;/a&gt;.

Nonetheless, I&#039;ve adapted the function to maybe make it work (trunk version). However the &quot;error&quot; was by design (and it is documented in source) because it is an unsupported Windows Versions.</description>
		<content:encoded><![CDATA[<p>If you had given me your e-mail adress I could have answered directly. I&#8217;m always happy when people send me bug reports but the comments area is not the right place!!<br />
So send a <a href="http://mailhide.recaptcha.net/d?k=01MeKrDPlF4UMY4OOGe4JcPA==&#038;c=qu6RnFAF5jjxh0bbfE7ymCJCa5TFUIfZS6RdKFzWmME=" rel="nofollow">mail </a> or use the <a href="http://homepages.codegear.com/jedi/issuetracker/main_page.php" rel="nofollow">JEDI Issue Tracker</a>.</p>
<p>Nonetheless, I&#8217;ve adapted the function to maybe make it work (trunk version). However the &#8220;error&#8221; was by design (and it is documented in source) because it is an unsupported Windows Versions.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: CodeX</title>
		<link>http://blog.delphi-jedi.net/2008/08/30/pre-release-of-jedi-api-22-wscl-092-2/comment-page-1/#comment-10991</link>
		<dc:creator>CodeX</dc:creator>
		<pubDate>Wed, 03 Dec 2008 01:49:56 +0000</pubDate>
		<guid isPermaLink="false">http://blog.delphi-jedi.net/?p=254#comment-10991</guid>
		<description>Hello Christian,
I&#039;m sure, you&#039;re going to add Windows 7 support to this project some day. However I&#039;m wondering if this could be done earlier than the final release of Windows 7. At the moment I&#039;m testing the latest beta and noticed that some parts of JWSCL are not compatible with it.

For example I&#039;m getting this:
&quot;An Exception of type EJwsclUnsupportedWindowsVersionException was raised.

Source method: GetRunElevation
Source class: TJwSecurityToken
Source file: JwsclToken.pas
Source line: 0

Message: Unsupported version &quot;Unknown&quot;. Need &quot;Windows Vista&quot; or higher&quot;

Vista and Win7 are based on the same core so I&#039;m quite sure this and similar errors can be avoided by including Win7 as a known OS and treating it the same way as Vista. What do you think?</description>
		<content:encoded><![CDATA[<p>Hello Christian,<br />
I&#8217;m sure, you&#8217;re going to add Windows 7 support to this project some day. However I&#8217;m wondering if this could be done earlier than the final release of Windows 7. At the moment I&#8217;m testing the latest beta and noticed that some parts of JWSCL are not compatible with it.</p>
<p>For example I&#8217;m getting this:<br />
&#8220;An Exception of type EJwsclUnsupportedWindowsVersionException was raised.</p>
<p>Source method: GetRunElevation<br />
Source class: TJwSecurityToken<br />
Source file: JwsclToken.pas<br />
Source line: 0</p>
<p>Message: Unsupported version &#8220;Unknown&#8221;. Need &#8220;Windows Vista&#8221; or higher&#8221;</p>
<p>Vista and Win7 are based on the same core so I&#8217;m quite sure this and similar errors can be avoided by including Win7 as a known OS and treating it the same way as Vista. What do you think?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Christian Wimmer</title>
		<link>http://blog.delphi-jedi.net/2008/08/30/pre-release-of-jedi-api-22-wscl-092-2/comment-page-1/#comment-4851</link>
		<dc:creator>Christian Wimmer</dc:creator>
		<pubDate>Tue, 02 Sep 2008 20:58:25 +0000</pubDate>
		<guid isPermaLink="false">http://blog.delphi-jedi.net/?p=254#comment-4851</guid>
		<description>Since Delphi2009 isn&#039;t released yet, there will be no stable release of JVCL until then. 
Only fieldtesters of Tiburon have access to private newsgroups of Embarcadero where they can find information about pre-versions of 3th party libs for Tiburon.</description>
		<content:encoded><![CDATA[<p>Since Delphi2009 isn&#8217;t released yet, there will be no stable release of JVCL until then.<br />
Only fieldtesters of Tiburon have access to private newsgroups of Embarcadero where they can find information about pre-versions of 3th party libs for Tiburon.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vjatheslav</title>
		<link>http://blog.delphi-jedi.net/2008/08/30/pre-release-of-jedi-api-22-wscl-092-2/comment-page-1/#comment-4843</link>
		<dc:creator>Vjatheslav</dc:creator>
		<pubDate>Tue, 02 Sep 2008 19:02:38 +0000</pubDate>
		<guid isPermaLink="false">http://blog.delphi-jedi.net/?p=254#comment-4843</guid>
		<description>Where can I find a newer version of JVCL that installs in Tiburon? No stable releases are working with it.</description>
		<content:encoded><![CDATA[<p>Where can I find a newer version of JVCL that installs in Tiburon? No stable releases are working with it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Christian Wimmer</title>
		<link>http://blog.delphi-jedi.net/2008/08/30/pre-release-of-jedi-api-22-wscl-092-2/comment-page-1/#comment-4746</link>
		<dc:creator>Christian Wimmer</dc:creator>
		<pubDate>Mon, 01 Sep 2008 14:20:50 +0000</pubDate>
		<guid isPermaLink="false">http://blog.delphi-jedi.net/?p=254#comment-4746</guid>
		<description>I don&#039;t know. 

Please ask such questions in the newsgroups of 

JEDI (forums.talkto.net) 

OR

Codegear/Embarcadero (forums.codegear.com)</description>
		<content:encoded><![CDATA[<p>I don&#8217;t know. </p>
<p>Please ask such questions in the newsgroups of </p>
<p>JEDI (forums.talkto.net) </p>
<p>OR</p>
<p>Codegear/Embarcadero (forums.codegear.com)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eric H</title>
		<link>http://blog.delphi-jedi.net/2008/08/30/pre-release-of-jedi-api-22-wscl-092-2/comment-page-1/#comment-4744</link>
		<dc:creator>Eric H</dc:creator>
		<pubDate>Mon, 01 Sep 2008 12:50:06 +0000</pubDate>
		<guid isPermaLink="false">http://blog.delphi-jedi.net/?p=254#comment-4744</guid>
		<description>Is there an updataed version of conditional defines (.inc files)?

OR

What will be the conditional define for Delphi 2009?</description>
		<content:encoded><![CDATA[<p>Is there an updataed version of conditional defines (.inc files)?</p>
<p>OR</p>
<p>What will be the conditional define for Delphi 2009?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Christian Wimmer</title>
		<link>http://blog.delphi-jedi.net/2008/08/30/pre-release-of-jedi-api-22-wscl-092-2/comment-page-1/#comment-4734</link>
		<dc:creator>Christian Wimmer</dc:creator>
		<pubDate>Mon, 01 Sep 2008 10:45:53 +0000</pubDate>
		<guid isPermaLink="false">http://blog.delphi-jedi.net/?p=254#comment-4734</guid>
		<description>There is no build version yet, since there is no Delphi 2009 release. However you can buy it from now on and it is released in near future.</description>
		<content:encoded><![CDATA[<p>There is no build version yet, since there is no Delphi 2009 release. However you can buy it from now on and it is released in near future.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eric H</title>
		<link>http://blog.delphi-jedi.net/2008/08/30/pre-release-of-jedi-api-22-wscl-092-2/comment-page-1/#comment-4705</link>
		<dc:creator>Eric H</dc:creator>
		<pubDate>Mon, 01 Sep 2008 01:58:40 +0000</pubDate>
		<guid isPermaLink="false">http://blog.delphi-jedi.net/?p=254#comment-4705</guid>
		<description>What is the build version number of Delphi 2009?</description>
		<content:encoded><![CDATA[<p>What is the build version number of Delphi 2009?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

