<?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>d500</title>
	<atom:link href="http://www.schemionneck.de/d500/tlbblog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.schemionneck.de/d500/tlbblog</link>
	<description>v2</description>
	<lastBuildDate>Wed, 30 Nov 2011 16:14:10 +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>passing null-terminated string from 3rd party DLL to Microsoft Access 2003</title>
		<link>http://www.schemionneck.de/d500/tlbblog/2011/11/30/passing-null-terminated-string-from-dll-to-access/</link>
		<comments>http://www.schemionneck.de/d500/tlbblog/2011/11/30/passing-null-terminated-string-from-dll-to-access/#comments</comments>
		<pubDate>Wed, 30 Nov 2011 13:31:52 +0000</pubDate>
		<dc:creator>tlb</dc:creator>
				<category><![CDATA[MS Access / VBA]]></category>
		<category><![CDATA[Access]]></category>
		<category><![CDATA[DLL]]></category>
		<category><![CDATA[VBA]]></category>

		<guid isPermaLink="false">http://www.schemionneck.de/d500/tlbblog/?p=95</guid>
		<description><![CDATA[target audience: people w/ no control over the DLL-source, unable to change behavior of DLL people who don&#8217;t want to pass an input-parameter to the DLL, which will be filled w/ the result in most other cases people who want to call a callback-function/sub inside Access recommended reading: http://msdn.microsoft.com/en-us/library/ms811463 or http://oreilly.com/catalog/win32api/chapter/ch06.html more reading: http://blogs.msdn.com/b/ericlippert/archive/2003/09/12/52976.aspx http://www.codeproject.com/KB/string/bstrsproject1.aspx [...]]]></description>
			<content:encoded><![CDATA[<p>target audience:</p>
<ul>people w/ no control over the DLL-source, unable to change behavior of DLL</ul>
<ul>people who don&#8217;t want to pass an input-parameter to the DLL, which will be filled w/ the result in most other cases</ul>
<ul>people who want to call a callback-function/sub inside Access</ul>
<p>recommended reading:<br />
<a href="http://msdn.microsoft.com/en-us/library/ms811463" title="Win32 API Programming with Visual Basic" target="_blank">http://msdn.microsoft.com/en-us/library/ms811463</a> or<br />
<a href="http://oreilly.com/catalog/win32api/chapter/ch06.html" title="Win32 API Programming with Visual Basic" target="_blank">http://oreilly.com/catalog/win32api/chapter/ch06.html</a></p>
<p>more reading:<br />
<a href="http://blogs.msdn.com/b/ericlippert/archive/2003/09/12/52976.aspx" title="Eric's Complete Guide To BSTR Semantics" target="_blank">http://blogs.msdn.com/b/ericlippert/archive/2003/09/12/52976.aspx</a><br />
<a href="http://www.codeproject.com/KB/string/bstrsproject1.aspx" title="Guide to BSTR and C String Conversions" target="_blank">http://www.codeproject.com/KB/string/bstrsproject1.aspx</a></p>
<p>my working sample:<br />
<pre><code>Option Compare Database
Option Explicit

Declare Sub WebGISConn_init Lib &quot;P:\doswin\LDA\IPFLink\20110920\IPFLink.dll&quot; Alias &quot;IPFLink_init&quot; (ByVal WebGISConn_CallBack As Long)
Declare Sub WebGISConn_showFeaturesInIMS Lib &quot;P:\doswin\LDA\IPFLink\20110920\IPFLink.dll&quot; Alias &quot;IPFLink_showFeatureIDStringWithInterfaceInIMS&quot; (ByVal feats As String, ByVal interf As String)

Declare Sub CopyMemory Lib &quot;kernel32&quot; Alias &quot;RtlMoveMemory&quot; (pDst As Any, pSrc As Any, ByVal ByteLen As Long)
Declare Function lstrlenA Lib &quot;kernel32&quot; (ByVal lpString As Long) As Long
&#039;
&#039; testwrapper for easy call from &quot;immediate window&quot;
&#039;
Public Sub testWebGIS()
&nbsp;&nbsp;&nbsp;&nbsp;Call initWebGIS
&nbsp;&nbsp;&nbsp;&nbsp;Call openWebGIS(428300001)
End Sub
&#039;
&#039; this SUB will be called from an external DLL
&#039; e.g. clicked on a button in firefox w/ webgis
&#039;
Public Sub WebGISConn_CallBack(ByVal interf As Long, ByVal feats As Long)
&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;Dim idList As String
&nbsp;&nbsp;&nbsp;&nbsp;Dim layerInterface As String
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;On Error Resume Next
&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;Debug.Print &quot;dll is calling ... &quot; &amp; LPSTRtoBSTR(interf) &amp; LPSTRtoBSTR(feats)
&nbsp;&nbsp;&nbsp;&nbsp;&#039;
&nbsp;&nbsp;&nbsp;&nbsp;&#039; TODO: open form w/ data
&nbsp;&nbsp;&nbsp;&nbsp;&#039;
End Sub
&#039;
&#039; open object in browser w/ webgis
&#039;
Public Sub openWebGIS(ByRef Id As Variant)
&nbsp;&nbsp;&nbsp;&nbsp;Dim idList As String
&nbsp;&nbsp;&nbsp;&nbsp;Dim layerInterface As String
&nbsp;&nbsp; 
&nbsp;&nbsp;&nbsp;&nbsp;idList = CStr(Id)
&nbsp;&nbsp;&nbsp;&nbsp;layerInterface = &quot;LDA_obertaegigeDenkmale&quot;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;Call WebGISConn_showFeaturesInIMS(idList, layerInterface)
End Sub
&#039;
&#039; init DLL
&#039; register access-callbackfunction
&#039;
Public Sub initWebGIS()
&nbsp;&nbsp;&nbsp;&nbsp;Call WebGISConn_init(AddressOf WebGISConn_CallBack)
End Sub

&#039;
&#039; convert C-null-terminated string from DLL to vba BSTR string
&#039;
Function LPSTRtoBSTR(ByVal lpsz As Long) As String
 
&#039; Input: a valid LPSTR pointer lpsz
&#039; Output: a sBSTR with the same character array
 
Dim cChars As Long
 
&#039; Get number of characters in lpsz
cChars = lstrlenA(lpsz)
 
&#039; Initialize string
LPSTRtoBSTR = String$(cChars, 0)
 
&#039; Copy string
CopyMemory ByVal StrPtr(LPSTRtoBSTR), ByVal lpsz, cChars
 
&#039; Convert to Unicode
LPSTRtoBSTR = Trim0(StrConv(LPSTRtoBSTR, vbUnicode))
 
End Function

Public Function Trim0(sName As String) As String
&nbsp;&nbsp; &#039; Right trim string at first null.
&nbsp;&nbsp; Dim x As Integer
&nbsp;&nbsp; x = InStr(sName, vbNullChar)
&nbsp;&nbsp; If x &gt; 0 Then Trim0 = Left$(sName, x - 1) Else Trim0 = sName
End Function
</code></pre></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schemionneck.de/d500/tlbblog/2011/11/30/passing-null-terminated-string-from-dll-to-access/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Symfony2 on XAMPP (Windows) minor tweaks</title>
		<link>http://www.schemionneck.de/d500/tlbblog/2011/09/15/symfony2-on-xampp-windows-minor-tweaks/</link>
		<comments>http://www.schemionneck.de/d500/tlbblog/2011/09/15/symfony2-on-xampp-windows-minor-tweaks/#comments</comments>
		<pubDate>Thu, 15 Sep 2011 15:45:49 +0000</pubDate>
		<dc:creator>tlb</dc:creator>
				<category><![CDATA[devel]]></category>
		<category><![CDATA[webdev]]></category>
		<category><![CDATA[APACHE]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[SYMFONY2]]></category>

		<guid isPermaLink="false">http://www.schemionneck.de/d500/tlbblog/?p=88</guid>
		<description><![CDATA[w/ XAMPP 1.7.4, Symfony 2.0.1 http://localhost/Symfony/web/config.php gives us: Recommendations ... 1 .Install and enable a PHP accelerator like APC (highly recommended). 2. Install and enable the intl extension. 3. Set short_open_tag to off in php.ini*. solution: (1) install corresponding php_apc.dll, add extension=php_apc.dll to php.ini (2) mod_intl.dll exist, enable it in php.ini, but you need to [...]]]></description>
			<content:encoded><![CDATA[<p>w/ XAMPP 1.7.4, Symfony 2.0.1</p>
<p>http://localhost/Symfony/web/config.php gives us:<br />
<pre><code>
Recommendations
...
1 .Install and enable a PHP accelerator like APC (highly recommended).
2. Install and enable the intl extension.
3. Set short_open_tag to off in php.ini*.
</code></pre></p>
<p>solution:<br />
(1) install corresponding <a href="http://tanguy.tk/php/535_vc6/" title="php_apc.dll for php 5.3.5 vc6" target="_blank">php_apc.dll</a>, add extension=php_apc.dll to php.ini<br />
(2) mod_intl.dll exist, enable it in php.ini, but you need to have to copy all icu*36.dll files from your-xampp-path\php to your-xampp-path\apache\bin<br />
(3) bad default-xampp-php.ini, &#8220;short_open_tag&#8221; is set twice &#8211; once &#8220;off&#8221; and once &#8220;on&#8221; two lines later, comment the latter out</p>
<p>http://localhost/Symfony/web/config.php is still not satisfied:<br />
<pre><code>
Recommendations
...
1. Upgrade your intl extension with a newer ICU version (4+).
</code></pre><br />
damn &#8230; I&#8217;m just one minute away from deinstalling xampp and take full control</p>
]]></content:encoded>
			<wfw:commentRss>http://www.schemionneck.de/d500/tlbblog/2011/09/15/symfony2-on-xampp-windows-minor-tweaks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bugzilla 4.0.2 on XAMPP (Windows)</title>
		<link>http://www.schemionneck.de/d500/tlbblog/2011/09/15/bugzilla-4-0-2-on-xampp-windows/</link>
		<comments>http://www.schemionneck.de/d500/tlbblog/2011/09/15/bugzilla-4-0-2-on-xampp-windows/#comments</comments>
		<pubDate>Thu, 15 Sep 2011 10:02:01 +0000</pubDate>
		<dc:creator>tlb</dc:creator>
				<category><![CDATA[devel]]></category>
		<category><![CDATA[ACTIVEPERL]]></category>
		<category><![CDATA[BUGZILLA]]></category>
		<category><![CDATA[PERL]]></category>
		<category><![CDATA[XAMPP]]></category>

		<guid isPermaLink="false">http://www.schemionneck.de/d500/tlbblog/?p=81</guid>
		<description><![CDATA[after switching to ActivePerl on XAMPP (Windows) I thought the server was ready for a simple Bugzilla:Win32Install but after updating all perl-modules and installing the required and optional modules (if available for win32) checksetup.pl failed #perl checksetup.pl ... Invalid version format (negative version number) at Bugzilla/Install/Requirements.pm line ... it&#8217;s a known bug and it&#8217;s already [...]]]></description>
			<content:encoded><![CDATA[<p>after switching to <a href="http://www.schemionneck.de/d500/tlbblog/2011/09/09/use-activeperl-with-xampp-windows/" title="use ActivePerl with XAMPP (Windows)">ActivePerl on XAMPP (Windows)</a> I thought the server was ready for a simple <a href="https://wiki.mozilla.org/Bugzilla:Win32Install" title="Bugzilla:Win32Install" target="_blank">Bugzilla:Win32Install</a></p>
<p>but after updating all perl-modules and installing the required and optional modules (if available for win32) checksetup.pl failed<br />
<pre><code>#perl checksetup.pl
...
Invalid version format (negative version number) at Bugzilla/Install/Requirements.pm line ...
</code></pre></p>
<p>it&#8217;s a <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=678772" title="Bug 678772 - version.pm 0.92 and newer forbids negative values, making checksetup.pl fail with the error "Invalid version format"" target="_blank">known bug</a> and it&#8217;s already fixed and committed and should be included in future version (> 4.0.2).<br />
until then you have to patch it yourself with: <a href="https://bug678772.bugzilla.mozilla.org/attachment.cgi?id=552915" title="patch, v1  (925 bytes, patch)" target="_blank">patch, v1  (925 bytes, patch)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schemionneck.de/d500/tlbblog/2011/09/15/bugzilla-4-0-2-on-xampp-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>use ActivePerl with XAMPP (Windows)</title>
		<link>http://www.schemionneck.de/d500/tlbblog/2011/09/09/use-activeperl-with-xampp-windows/</link>
		<comments>http://www.schemionneck.de/d500/tlbblog/2011/09/09/use-activeperl-with-xampp-windows/#comments</comments>
		<pubDate>Fri, 09 Sep 2011 10:24:33 +0000</pubDate>
		<dc:creator>tlb</dc:creator>
				<category><![CDATA[webdev]]></category>
		<category><![CDATA[ACTIVEPERL]]></category>
		<category><![CDATA[APACHE]]></category>
		<category><![CDATA[PERL]]></category>
		<category><![CDATA[XAMPP]]></category>

		<guid isPermaLink="false">http://www.schemionneck.de/d500/tlbblog/?p=62</guid>
		<description><![CDATA[- tested with xampp 1.7.4 - install activeperl (e.g. 5.12.4.1205) to c:\usr - open a shell c:\usr\bin - add corresponding repo and install corresponding mod_perl.so (only needed to run as module) #ppm repo add UWinnipeg http://cpan.uwinnipeg.ca/PPMPackages/12xx/ #ppm install mod_perl - if running as module copy new mod_perl.so to your-xampp-apache-path\modules - edit apache.conf add &#8220;ScriptInterpreterSource Registry-Strict&#8221; [...]]]></description>
			<content:encoded><![CDATA[<p>- tested with xampp 1.7.4<br />
- install activeperl (e.g. 5.12.4.1205) to c:\usr<br />
- open a shell c:\usr\bin<br />
- add corresponding repo and install corresponding mod_perl.so (only needed to run as module)<br />
<pre><code>
#ppm repo add UWinnipeg http://cpan.uwinnipeg.ca/PPMPackages/12xx/
#ppm install mod_perl
</code></pre><br />
- if running as module copy new mod_perl.so to your-xampp-apache-path\modules<br />
- edit apache.conf add &#8220;ScriptInterpreterSource Registry-Strict&#8221;<br />
<pre><code>
&lt;Directory &quot;C:/dev/xampp/htdocs&quot;&gt;
&nbsp;&nbsp;&nbsp;&nbsp;#
&nbsp;&nbsp;&nbsp;&nbsp;# Possible values for the Options directive are &quot;None&quot;, &quot;All&quot;,
&nbsp;&nbsp;&nbsp;&nbsp;# or any combination of:
&nbsp;&nbsp;&nbsp;&nbsp;#&nbsp;&nbsp; Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
&nbsp;&nbsp;&nbsp;&nbsp;#
&nbsp;&nbsp;&nbsp;&nbsp;# Note that &quot;MultiViews&quot; must be named *explicitly* --- &quot;Options All&quot;
&nbsp;&nbsp;&nbsp;&nbsp;# doesn&#039;t give it to you.
&nbsp;&nbsp;&nbsp;&nbsp;#
&nbsp;&nbsp;&nbsp;&nbsp;# The Options directive is both complicated and important.&nbsp;&nbsp;Please see
&nbsp;&nbsp;&nbsp;&nbsp;# http://httpd.apache.org/docs/2.2/mod/core.html#options
&nbsp;&nbsp;&nbsp;&nbsp;# for more information.
&nbsp;&nbsp;&nbsp;&nbsp;#
&nbsp;&nbsp;&nbsp;&nbsp;Options Indexes FollowSymLinks Includes ExecCGI

&nbsp;&nbsp;&nbsp;&nbsp;#
&nbsp;&nbsp;&nbsp;&nbsp;# AllowOverride controls what directives may be placed in .htaccess files.
&nbsp;&nbsp;&nbsp;&nbsp;# It can be &quot;All&quot;, &quot;None&quot;, or any combination of the keywords:
&nbsp;&nbsp;&nbsp;&nbsp;#&nbsp;&nbsp; Options FileInfo AuthConfig Limit
&nbsp;&nbsp;&nbsp;&nbsp;#
&nbsp;&nbsp;&nbsp;&nbsp;AllowOverride All

&nbsp;&nbsp;&nbsp;&nbsp;#
&nbsp;&nbsp;&nbsp;&nbsp;# Controls who can get stuff from this server.
&nbsp;&nbsp;&nbsp;&nbsp;#
&nbsp;&nbsp;&nbsp;&nbsp;Order allow,deny
&nbsp;&nbsp;&nbsp;&nbsp;Allow from all
&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;ScriptInterpreterSource Registry-Strict

&lt;/Directory&gt;
</code></pre><br />
- edit your-xammp-apache-path\extra\httpd_perl.conf<br />
- comment out &#8220;PerlPostConfigRequire&#8221;-line<br />
- if running as non-module comment out LoadFile &#8230; n&#8217; LoadModule &#8230; lines<br />
- if running as module correct path/filename<br />
<pre><code>
LoadFile &quot;C:/usr/bin/perl512.dll&quot;
LoadModule perl_module modules/mod_perl.so
#PerlPostConfigRequire &quot;C:/dev/xampp/apache/conf/extra/startup.pl&quot;
...
</code></pre><br />
- add following registry entry (you may use <a href="http://www.schemionneck.de/d500/tlbblog/download/index.php?dir=&#038;file=apache_cgi.reg" title="apache_cgi.reg" target="_blank">apache_cgi.reg</a>):<br />
<pre><code>
Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\.cgi\Shell\ExecCGI\Command]
@=&quot;C:\\usr\\bin\\perl.exe -T&quot;
</code></pre><br />
- restart apache<br />
- test perl via your fav. www-browser and a file w/ following content<br />
<pre><code>
#!/usr/bin/perl
print &quot;Content-type:text/html\n\n&quot;;
print &quot;hello world&quot;;
</code></pre><br />
- optional install HTML::Perlinfo<br />
<pre><code>
&nbsp;&nbsp;#ppm install HTML-Perlinfo
</code></pre><br />
- test with your fav. www-browser and a file w/ following content<br />
<pre><code>
#!/usr/bin/perl

use HTML::Perlinfo;
use CGI qw(header);

$q = new CGI;
print $q-&gt;header;

$p = new HTML::Perlinfo;
$p-&gt;info_general;
$p-&gt;info_variables;
$p-&gt;info_modules;
$p-&gt;info_license;
</code></pre></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schemionneck.de/d500/tlbblog/2011/09/09/use-activeperl-with-xampp-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>wow &#8230; 2 years, 3 months, x days no post</title>
		<link>http://www.schemionneck.de/d500/tlbblog/2011/09/09/wow-2-years-3-months-x-days-no-post/</link>
		<comments>http://www.schemionneck.de/d500/tlbblog/2011/09/09/wow-2-years-3-months-x-days-no-post/#comments</comments>
		<pubDate>Fri, 09 Sep 2011 10:06:15 +0000</pubDate>
		<dc:creator>tlb</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.schemionneck.de/d500/tlbblog/?p=60</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://www.schemionneck.de/d500/tlbblog/2011/09/09/wow-2-years-3-months-x-days-no-post/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cypress EZ-USB FX2 &#8211; se7en RC 7100</title>
		<link>http://www.schemionneck.de/d500/tlbblog/2009/05/27/cypress-ez-usb-fx2-se7en-rc-7100/</link>
		<comments>http://www.schemionneck.de/d500/tlbblog/2009/05/27/cypress-ez-usb-fx2-se7en-rc-7100/#comments</comments>
		<pubDate>Wed, 27 May 2009 21:22:45 +0000</pubDate>
		<dc:creator>tlb</dc:creator>
				<category><![CDATA[EZ-USB FX2]]></category>
		<category><![CDATA[sega saturn]]></category>

		<guid isPermaLink="false">http://www.schemionneck.de/d500/tlbblog/?p=13</guid>
		<description><![CDATA[tested w/ windows 7 RC 7100 x64 longer &#8220;readme.txt&#8221; w/ advice for v64, se7en64 (see below) see download section &#8230; and remember for all 64-versions of vista and se7en: - turn off  &#8221;digital driver signature enforcement&#8221; in bootmenu, every time you boot, se7en still complains (first) time with a popup &#8220;unsigned driver could not be [...]]]></description>
			<content:encoded><![CDATA[<ul>
<li>tested w/ windows 7 RC 7100 x64</li>
<li>longer &#8220;readme.txt&#8221; w/ advice for v64, se7en64 (see below)</li>
<li>see download section</li>
</ul>
<p>&#8230;<br />
and remember for all 64-versions of vista and se7en:</p>
<p>- turn off  &#8221;digital driver signature enforcement&#8221; in bootmenu, every time you boot, se7en still complains (first) time with a popup &#8220;unsigned driver could not be loaded &#8230; blabla&#8221; but driver is loaded and running</p>
<p>- or use Driver Signature Enforcement Overrider (<a title="http://www.ngohq.com/home.php?page=dseo" href="http://www.ngohq.com/home.php?page=dseo" target="_blank">http://www.ngohq.com/home.php?page=dseo</a>)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.schemionneck.de/d500/tlbblog/2009/05/27/cypress-ez-usb-fx2-se7en-rc-7100/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Cypress EZ-USB FX2 &quot;inf&quot; update for win-all</title>
		<link>http://www.schemionneck.de/d500/tlbblog/2008/04/20/cypress-ez-usb-fx2-inf-update-for-win-all/</link>
		<comments>http://www.schemionneck.de/d500/tlbblog/2008/04/20/cypress-ez-usb-fx2-inf-update-for-win-all/#comments</comments>
		<pubDate>Sat, 19 Apr 2008 22:50:51 +0000</pubDate>
		<dc:creator>tlb</dc:creator>
				<category><![CDATA[EZ-USB FX2]]></category>
		<category><![CDATA[sega saturn]]></category>

		<guid isPermaLink="false">http://www.schemionneck.de/d500/tlbblog/?p=17</guid>
		<description><![CDATA[v64sp1 and svr08-64 didn´t accept my last *.inf rewrote inf from scratch new inf works also with win xp sp 3 build 5508 should also work with svr08-32, vista32(sp1), w2k see download section]]></description>
			<content:encoded><![CDATA[<div class="entry">
<ul>
<li>v64sp1 and svr08-64 didn´t accept my last *.inf</li>
<li>rewrote inf from scratch</li>
<li>new inf works also with win xp sp 3 build 5508</li>
<li>should also work with svr08-32, vista32(sp1), w2k</li>
<li>see download section</li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.schemionneck.de/d500/tlbblog/2008/04/20/cypress-ez-usb-fx2-inf-update-for-win-all/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cypress EZ-USB FX2 &quot;inf&quot; update for vista64</title>
		<link>http://www.schemionneck.de/d500/tlbblog/2007/03/30/cypress-ez-usb-fx2-inf-update-for-vista64/</link>
		<comments>http://www.schemionneck.de/d500/tlbblog/2007/03/30/cypress-ez-usb-fx2-inf-update-for-vista64/#comments</comments>
		<pubDate>Fri, 30 Mar 2007 21:06:42 +0000</pubDate>
		<dc:creator>tlb</dc:creator>
				<category><![CDATA[EZ-USB FX2]]></category>
		<category><![CDATA[sega saturn]]></category>

		<guid isPermaLink="false">http://www.schemionneck.de/d500/tlbblog/2007/03/30/cypress-ez-usb-fx2-driver-inf-update-for-vista64/</guid>
		<description><![CDATA[v64 didn´t accept my old *.inf for x64 so here a updated one w/ driver (only amd64) see download section]]></description>
			<content:encoded><![CDATA[<ul>
<li>v64 didn´t accept my old *.inf for x64</li>
<li>so here a updated one w/ driver (only amd64)</li>
<li>see download section</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.schemionneck.de/d500/tlbblog/2007/03/30/cypress-ez-usb-fx2-inf-update-for-vista64/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>windows x64 driver for Cypress EZ-USB FX2</title>
		<link>http://www.schemionneck.de/d500/tlbblog/2006/04/11/windows-x64-driver-for-cypress-ez-usb-fx2/</link>
		<comments>http://www.schemionneck.de/d500/tlbblog/2006/04/11/windows-x64-driver-for-cypress-ez-usb-fx2/#comments</comments>
		<pubDate>Tue, 11 Apr 2006 14:36:56 +0000</pubDate>
		<dc:creator>tlb</dc:creator>
				<category><![CDATA[EZ-USB FX2]]></category>
		<category><![CDATA[sega saturn]]></category>

		<guid isPermaLink="false">http://www.schemionneck.de/d500/tlbblog/?p=8</guid>
		<description><![CDATA[another Sega Saturn news &#8230; now I have a &#8220;REAL&#8221; PRO ACTION REPLAY with USB-port from pinchy, thx. because of lack of a windows x64 driver for Cypress EZ-USB FX2 for my AMD64 system I build a windows x64 driver for Cypress EZ-USB FX2 for e.g.: Cypress EZ-USB FX2 (68613) &#8211; EEPROM missing includes a [...]]]></description>
			<content:encoded><![CDATA[<ul>
<li>another Sega Saturn news &#8230;</li>
<li>now I have a &#8220;REAL&#8221; PRO ACTION REPLAY with USB-port from pinchy, thx.</li>
<li>because of lack of a windows x64 driver for Cypress EZ-USB FX2 for my AMD64 system</li>
<li>I build a windows x64 driver for Cypress EZ-USB FX2 for e.g.: Cypress EZ-USB FX2 (68613) &#8211; EEPROM missing</li>
<li>includes a rebuild for windows xp sp2 32bit with latest ddk, maybe also working with w2k, wxp sp1, wxp</li>
<li>both w/ and w/o hack for large transfer</li>
<li>see download section</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.schemionneck.de/d500/tlbblog/2006/04/11/windows-x64-driver-for-cypress-ez-usb-fx2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Download section opened</title>
		<link>http://www.schemionneck.de/d500/tlbblog/2006/03/29/download-section-opened/</link>
		<comments>http://www.schemionneck.de/d500/tlbblog/2006/03/29/download-section-opened/#comments</comments>
		<pubDate>Wed, 29 Mar 2006 13:56:29 +0000</pubDate>
		<dc:creator>tlb</dc:creator>
				<category><![CDATA[downloads]]></category>
		<category><![CDATA[EZ-USB FX2]]></category>
		<category><![CDATA[sega saturn]]></category>

		<guid isPermaLink="false">http://www.schemionneck.de/d500/tlbblog/?p=7</guid>
		<description><![CDATA[with all the Sega Saturn stuff, with silent release of TyRaNiD&#8217;s debugger http://www.schemionneck.de/d500/tlbblog/download/]]></description>
			<content:encoded><![CDATA[<p>with all the Sega Saturn stuff, with silent release of TyRaNiD&#8217;s debugger</p>
<p><a title="download section" href="http://www.schemionneck.de/d500/tlbblog/download/" target="_self">http://www.schemionneck.de/d500/tlbblog/download/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schemionneck.de/d500/tlbblog/2006/03/29/download-section-opened/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sega Saturn MC68EC000 Debugger</title>
		<link>http://www.schemionneck.de/d500/tlbblog/2006/03/21/sega-saturn-mc68ec000-debugger/</link>
		<comments>http://www.schemionneck.de/d500/tlbblog/2006/03/21/sega-saturn-mc68ec000-debugger/#comments</comments>
		<pubDate>Tue, 21 Mar 2006 13:35:08 +0000</pubDate>
		<dc:creator>tlb</dc:creator>
				<category><![CDATA[sega saturn]]></category>
		<category><![CDATA[HOMEBREW]]></category>
		<category><![CDATA[SATURN]]></category>
		<category><![CDATA[SEGA]]></category>

		<guid isPermaLink="false">http://www.schemionneck.de/d500/tlbblog/?p=6</guid>
		<description><![CDATA[sat68kdb Version 0.0 by Bart Trzynadlowski w/ patch for: w2k/xp-kcomm-directio YANO-EXSTAND-LPT-mode ems 4in1 and datel par mode by TLB rev. 2006/mar/20]]></description>
			<content:encoded><![CDATA[<p>sat68kdb Version 0.0 by Bart Trzynadlowski</p>
<p>w/ patch for:</p>
<ul>
<li>w2k/xp-kcomm-directio</li>
<li>YANO-EXSTAND-LPT-mode</li>
<li>ems 4in1 and datel par mode</li>
</ul>
<p>by TLB rev. 2006/mar/20</p>
]]></content:encoded>
			<wfw:commentRss>http://www.schemionneck.de/d500/tlbblog/2006/03/21/sega-saturn-mc68ec000-debugger/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sega Saturn DeBuGger &#8211; TyRaNiD</title>
		<link>http://www.schemionneck.de/d500/tlbblog/2006/03/11/sega-saturn-debugger-ver-07-alpha-for-xp-and-yano/</link>
		<comments>http://www.schemionneck.de/d500/tlbblog/2006/03/11/sega-saturn-debugger-ver-07-alpha-for-xp-and-yano/#comments</comments>
		<pubDate>Sat, 11 Mar 2006 17:32:40 +0000</pubDate>
		<dc:creator>tlb</dc:creator>
				<category><![CDATA[sega saturn]]></category>
		<category><![CDATA[HOMEBREW]]></category>
		<category><![CDATA[SATURN]]></category>
		<category><![CDATA[SEGA]]></category>

		<guid isPermaLink="false">http://www.schemionneck.de/d500/tlbblog/?p=5</guid>
		<description><![CDATA[Sega Saturn DeBuGger ver. 0.7 alpha by TyRaNiD w/ patch for: w2k/xp-kcomm-directio YANO-EXSTAND-LPT-mode release depends on TyRaNiD&#8217;s permission by TLB rev. 2006/mar/11]]></description>
			<content:encoded><![CDATA[<p>Sega Saturn DeBuGger ver. 0.7 alpha by TyRaNiD</p>
<p>w/ patch for:</p>
<ul>
<li>w2k/xp-kcomm-directio</li>
<li>YANO-EXSTAND-LPT-mode</li>
<li>release depends on TyRaNiD&#8217;s permission</li>
</ul>
<p>by TLB rev. 2006/mar/11</p>
]]></content:encoded>
			<wfw:commentRss>http://www.schemionneck.de/d500/tlbblog/2006/03/11/sega-saturn-debugger-ver-07-alpha-for-xp-and-yano/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>power 2 the &#8230;</title>
		<link>http://www.schemionneck.de/d500/tlbblog/2006/02/15/3/</link>
		<comments>http://www.schemionneck.de/d500/tlbblog/2006/02/15/3/#comments</comments>
		<pubDate>Wed, 15 Feb 2006 14:10:16 +0000</pubDate>
		<dc:creator>tlb</dc:creator>
				<category><![CDATA[sega saturn]]></category>
		<category><![CDATA[HOMEBREW]]></category>
		<category><![CDATA[SATURN]]></category>
		<category><![CDATA[SEGA]]></category>

		<guid isPermaLink="false">http://www.schemionneck.de/d500/tlbblog/?p=6</guid>
		<description><![CDATA[added second powersupply connector to yano / freewing &#8211; linkboard for use with PC not an extra PSU]]></description>
			<content:encoded><![CDATA[<p>added second powersupply connector to yano / freewing &#8211; linkboard for use with PC not an extra PSU</p>
]]></content:encoded>
			<wfw:commentRss>http://www.schemionneck.de/d500/tlbblog/2006/02/15/3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>well, finally started !</title>
		<link>http://www.schemionneck.de/d500/tlbblog/2006/02/04/hello-world-2/</link>
		<comments>http://www.schemionneck.de/d500/tlbblog/2006/02/04/hello-world-2/#comments</comments>
		<pubDate>Sat, 04 Feb 2006 03:02:15 +0000</pubDate>
		<dc:creator>tlb</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.schemionneck.de/d500/tlbblog/?p=4</guid>
		<description><![CDATA[welcome &#8230; installed/tested webalizer replaced mysql v3 with v5 (still old php4) 1st post played around with blog]]></description>
			<content:encoded><![CDATA[<p>welcome &#8230;</p>
<ul>
<li>installed/tested webalizer</li>
<li>replaced mysql v3 with v5 (still old php4)</li>
<li>1st post</li>
<li>played around with blog</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.schemionneck.de/d500/tlbblog/2006/02/04/hello-world-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

