<?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[Kurze Frage: Laden von DLLs (VC++2002)]]></title><description><![CDATA[<p>Hiho,</p>
<p>beginne grade in oben genannter Entwicklungsumgebung mit WinAPI Entwicklung. Beim obligatorischen Hallo-Welt ist mir die Ausgabe im Debugfenster aufgefallen:</p>
<p>'hello.exe': Loaded 'C:\WINDOWS\system32\ntdll.dll', No symbols loaded.<br />
'hello.exe': Loaded 'C:\WINDOWS\system32\kernel32.dll', No symbols loaded.<br />
'hello.exe': Loaded 'C:\WINDOWS\system32\user32.dll', No symbols loaded.<br />
'hello.exe': Loaded 'C:\WINDOWS\system32\gdi32.dll', No symbols loaded.<br />
'hello.exe': Loaded 'C:\WINDOWS\system32\SSSensor.dll', No symbols loaded.</p>
<p>Tja die Frage ist, warum die SSSensor.dll geladen wird. Laut google hat diese dll wohl irgendwas mit der sygate firewall zu tun (die ich auch installiert habe) aber was hat das im debug-fenster meiner hello-Applikation zu suchen ?!</p>
<p>Herzliche Grüße</p>
<p>Johannes</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/195237/kurze-frage-laden-von-dlls-vc-2002</link><generator>RSS for Node</generator><lastBuildDate>Thu, 09 Apr 2026 18:47:27 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/195237.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 15 Oct 2007 17:17:16 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Kurze Frage: Laden von DLLs (VC++2002) on Mon, 15 Oct 2007 17:17:16 GMT]]></title><description><![CDATA[<p>Hiho,</p>
<p>beginne grade in oben genannter Entwicklungsumgebung mit WinAPI Entwicklung. Beim obligatorischen Hallo-Welt ist mir die Ausgabe im Debugfenster aufgefallen:</p>
<p>'hello.exe': Loaded 'C:\WINDOWS\system32\ntdll.dll', No symbols loaded.<br />
'hello.exe': Loaded 'C:\WINDOWS\system32\kernel32.dll', No symbols loaded.<br />
'hello.exe': Loaded 'C:\WINDOWS\system32\user32.dll', No symbols loaded.<br />
'hello.exe': Loaded 'C:\WINDOWS\system32\gdi32.dll', No symbols loaded.<br />
'hello.exe': Loaded 'C:\WINDOWS\system32\SSSensor.dll', No symbols loaded.</p>
<p>Tja die Frage ist, warum die SSSensor.dll geladen wird. Laut google hat diese dll wohl irgendwas mit der sygate firewall zu tun (die ich auch installiert habe) aber was hat das im debug-fenster meiner hello-Applikation zu suchen ?!</p>
<p>Herzliche Grüße</p>
<p>Johannes</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1385834</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1385834</guid><dc:creator><![CDATA[JG321]]></dc:creator><pubDate>Mon, 15 Oct 2007 17:17:16 GMT</pubDate></item><item><title><![CDATA[Reply to Kurze Frage: Laden von DLLs (VC++2002) on Mon, 15 Oct 2007 17:22:39 GMT]]></title><description><![CDATA[<p>Ganz einfach: Sie wird in Deinen Prozess geladen. Vermutlich ist die DLL in der Registry so eingetragen, dass diese immer in den Adressraum jedes Prozesses geladen wird.</p>
<p>HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\AppInit_DLLs</p>
<p>Auf diese Weise die Firewall direkt Einfluss auf den Prozess nehmen.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1385837</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1385837</guid><dc:creator><![CDATA[Martin Richter]]></dc:creator><pubDate>Mon, 15 Oct 2007 17:22:39 GMT</pubDate></item><item><title><![CDATA[Reply to Kurze Frage: Laden von DLLs (VC++2002) on Mon, 15 Oct 2007 17:35:06 GMT]]></title><description><![CDATA[<p>Hiho,</p>
<p>danke für die Antwort. Der von dir angegebene Schlüssel existiert bei mir nicht, statt &quot;Windows&quot; hat er &quot;Windows NT&quot; im Namen. Wie auch immer, hab die Reg abgegrast nach &quot;appinit&quot; und diese 2 Einträge werden gefunden. Beide sind jedoch leer.</p>
<p>HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\IniFileMapping\win.ini\Windows</p>
<p>HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Windows</p>
<p>Gibt es noch andere Möglichkeiten warum (bzw. wo) diese DLL geladen wird ?</p>
<p>Danke nochmal</p>
<p>Herzliche Grüße</p>
<p>Johannes</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1385843</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1385843</guid><dc:creator><![CDATA[JG321]]></dc:creator><pubDate>Mon, 15 Oct 2007 17:35:06 GMT</pubDate></item><item><title><![CDATA[Reply to Kurze Frage: Laden von DLLs (VC++2002) on Tue, 16 Oct 2007 11:06:14 GMT]]></title><description><![CDATA[<p>Hiho,</p>
<p>ich habe das &quot;Phänomen&quot; jetzt mal genauer angeschaut, indem ich das Programm soweit gestutzt habe, bis oben besagte dll nicht mehr geladen wird:</p>
<pre><code>while( GetMessage( &amp;msg, NULL, 0, 0 ) )
</code></pre>
<p>Diese Zeile ist entscheidend. Sobald ich eine andere Schleifenkondition verwende wird die SSSensor.dll nicht mehr geladen. Die Funktion GetMessage ist hier also entscheidend. Kann mir jemand sagen warum ?</p>
<p>Herzliche Grüße</p>
<p>Johannes</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1386262</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1386262</guid><dc:creator><![CDATA[JG321]]></dc:creator><pubDate>Tue, 16 Oct 2007 11:06:14 GMT</pubDate></item><item><title><![CDATA[Reply to Kurze Frage: Laden von DLLs (VC++2002) on Tue, 16 Oct 2007 11:41:19 GMT]]></title><description><![CDATA[<p>Hier setzt ein systemweiter Message Hook an!</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1386286</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1386286</guid><dc:creator><![CDATA[Martin Richter]]></dc:creator><pubDate>Tue, 16 Oct 2007 11:41:19 GMT</pubDate></item><item><title><![CDATA[Reply to Kurze Frage: Laden von DLLs (VC++2002) on Tue, 16 Oct 2007 11:55:52 GMT]]></title><description><![CDATA[<p>Alles klar, vielen Dank für deine Antwort.</p>
<p>Herzliche Grüße</p>
<p>Johannes</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1386297</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1386297</guid><dc:creator><![CDATA[JG321]]></dc:creator><pubDate>Tue, 16 Oct 2007 11:55:52 GMT</pubDate></item></channel></rss>