<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Dienste]]></title><description><![CDATA[<p>Hallo,</p>
<p>ich habe einen Win32-Dienst erstellt und möchte nun meine ServiceMain debuggen.<br />
Doch wie kann ich mit meinen VC++ Debugger arbeiten?</p>
<p>Vielen Dank im Voraus</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/6229/dienste</link><generator>RSS for Node</generator><lastBuildDate>Sat, 18 Apr 2026 04:34:09 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/6229.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 18 Jun 2003 08:38:00 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Dienste on Wed, 18 Jun 2003 08:38:00 GMT]]></title><description><![CDATA[<p>Hallo,</p>
<p>ich habe einen Win32-Dienst erstellt und möchte nun meine ServiceMain debuggen.<br />
Doch wie kann ich mit meinen VC++ Debugger arbeiten?</p>
<p>Vielen Dank im Voraus</p>
]]></description><link>https://www.c-plusplus.net/forum/post/30263</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/30263</guid><dc:creator><![CDATA[Andi]]></dc:creator><pubDate>Wed, 18 Jun 2003 08:38:00 GMT</pubDate></item><item><title><![CDATA[Reply to Dienste on Wed, 18 Jun 2003 08:54:00 GMT]]></title><description><![CDATA[<p>Du kannst eine kleine Win32-Anwendung schreiben, die den installierten Treiber anspricht und Befehle ausführt. Dazu öffnest Du den Treiber mit:</p>
<pre><code class="language-cpp">void Open(void)
{
hdriver = CreateFile(&quot;\\\\.\\mydriver&quot;, GENERIC_READ | GENERIC_WRITE, 
      0, NULL, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL);
}
</code></pre>
<p>und sprichst die implementierten Befehle mit 'DeviceIoControl' an.</p>
<p>Beinm Ausführen des Treibers gibst Du dann diese Anwendung beim Debug-Befehl an.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/30264</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/30264</guid><dc:creator><![CDATA[RenéG]]></dc:creator><pubDate>Wed, 18 Jun 2003 08:54:00 GMT</pubDate></item></channel></rss>