<?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[dll datei laden...]]></title><description><![CDATA[<p>hi leute ich lade eine dll datei so:</p>
<pre><code class="language-cpp">if(NULL != (hDll = LoadLibrary(&quot;DLLTest.dll&quot;))) 
    { 
        if(NULL != (pfnGFP = GetProcAddress(hDll, &quot;GetInput&quot;))) 
        { 
            // in diesen scope kann ich mir aber auch sicher sein ;-) 
        } 
        FreeLibrary(hDll); 
    }
</code></pre>
<p>brauch ich das if(NULL != (pfnGFP = GetProcAddress(hDll, &quot;GetInput&quot;))) immer? was hats mit dem auf sich? is das auf eine dll spezisch bezogen oder wie?</p>
<p>cu</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/81498/dll-datei-laden</link><generator>RSS for Node</generator><lastBuildDate>Mon, 13 Apr 2026 14:23:23 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/81498.rss" rel="self" type="application/rss+xml"/><pubDate>Sun, 01 Aug 2004 14:56:56 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to dll datei laden... on Sun, 01 Aug 2004 14:56:56 GMT]]></title><description><![CDATA[<p>hi leute ich lade eine dll datei so:</p>
<pre><code class="language-cpp">if(NULL != (hDll = LoadLibrary(&quot;DLLTest.dll&quot;))) 
    { 
        if(NULL != (pfnGFP = GetProcAddress(hDll, &quot;GetInput&quot;))) 
        { 
            // in diesen scope kann ich mir aber auch sicher sein ;-) 
        } 
        FreeLibrary(hDll); 
    }
</code></pre>
<p>brauch ich das if(NULL != (pfnGFP = GetProcAddress(hDll, &quot;GetInput&quot;))) immer? was hats mit dem auf sich? is das auf eine dll spezisch bezogen oder wie?</p>
<p>cu</p>
]]></description><link>https://www.c-plusplus.net/forum/post/572763</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/572763</guid><dc:creator><![CDATA[surf]]></dc:creator><pubDate>Sun, 01 Aug 2004 14:56:56 GMT</pubDate></item><item><title><![CDATA[Reply to dll datei laden... on Sun, 01 Aug 2004 15:03:38 GMT]]></title><description><![CDATA[<p>Damit überprüfst Du, ob die Funktion erfolgreich aus der DLL importiert werden konnte.</p>
<p>Schließlich willst Du doch diese Funktion benutzen und brauchst dafür einen gültigen Funktionszeiger (!=NULL).</p>
]]></description><link>https://www.c-plusplus.net/forum/post/572767</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/572767</guid><dc:creator><![CDATA[Hepi]]></dc:creator><pubDate>Sun, 01 Aug 2004 15:03:38 GMT</pubDate></item><item><title><![CDATA[Reply to dll datei laden... on Sun, 01 Aug 2004 17:03:32 GMT]]></title><description><![CDATA[<p>Hepi schrieb:</p>
<blockquote>
<p>Damit überprüfst Du, ob die Funktion erfolgreich aus der DLL importiert werden konnte.</p>
<p>Schließlich willst Du doch diese Funktion benutzen und brauchst dafür einen gültigen Funktionszeiger (!=NULL).</p>
</blockquote>
<p>ok gut, ohne diesen funktionszeiger kann man keine funktion benutzen?<br />
aber wenn man eine fremde dll datei benutzt, wie kann man da raus finden welche funktionen in der stecken??</p>
<p>cu</p>
]]></description><link>https://www.c-plusplus.net/forum/post/572823</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/572823</guid><dc:creator><![CDATA[surf]]></dc:creator><pubDate>Sun, 01 Aug 2004 17:03:32 GMT</pubDate></item><item><title><![CDATA[Reply to dll datei laden... on Sun, 01 Aug 2004 17:26:18 GMT]]></title><description><![CDATA[<p>Im Normalfall weiß man das schon (oder kann es mit <a href="http://www.dependencywalker.com/" rel="nofollow">Dependency Walker</a> o.ä. nachschauen) - was genau willst du denn machen <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f615.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--confused_face"
      title=":confused:"
      alt="😕"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/572841</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/572841</guid><dc:creator><![CDATA[flenders]]></dc:creator><pubDate>Sun, 01 Aug 2004 17:26:18 GMT</pubDate></item><item><title><![CDATA[Reply to dll datei laden... on Sun, 01 Aug 2004 17:29:15 GMT]]></title><description><![CDATA[<p>flenders schrieb:</p>
<blockquote>
<p>Im Normalfall weiß man das schon (oder kann es mit <a href="http://www.dependencywalker.com/" rel="nofollow">Dependency Walker</a> o.ä. nachschauen) - was genau willst du denn machen <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f615.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--confused_face"
      title=":confused:"
      alt="😕"
    /></p>
</blockquote>
<p>ja ich will die Icmp.dll benutzen! weiß aber nicht was da alles drinnen ist..</p>
<p>cu</p>
]]></description><link>https://www.c-plusplus.net/forum/post/572845</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/572845</guid><dc:creator><![CDATA[surf]]></dc:creator><pubDate>Sun, 01 Aug 2004 17:29:15 GMT</pubDate></item><item><title><![CDATA[Reply to dll datei laden... on Sun, 01 Aug 2004 17:53:59 GMT]]></title><description><![CDATA[<p>Genau sowas kannst du mit Dependency Walker nachschauen - wobei man doch normalerweise weiß, was man verwenden will - naja, egal <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f921.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--clown_face"
      title=":clown:"
      alt="🤡"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/572862</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/572862</guid><dc:creator><![CDATA[flenders]]></dc:creator><pubDate>Sun, 01 Aug 2004 17:53:59 GMT</pubDate></item><item><title><![CDATA[Reply to dll datei laden... on Sun, 01 Aug 2004 17:56:00 GMT]]></title><description><![CDATA[<p>Dependency Walker wird ihm auch nichts nützen. Der Rückgabetyp und die Parameter werden ja nicht angezeigt. <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f921.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--clown_face"
      title=":clown:"
      alt="🤡"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/572863</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/572863</guid><dc:creator><![CDATA[ewr]]></dc:creator><pubDate>Sun, 01 Aug 2004 17:56:00 GMT</pubDate></item><item><title><![CDATA[Reply to dll datei laden... on Sun, 01 Aug 2004 20:28:04 GMT]]></title><description><![CDATA[<p>surf schrieb:</p>
<blockquote>
<p>flenders schrieb:</p>
<blockquote>
<p>Im Normalfall weiß man das schon (oder kann es mit <a href="http://www.dependencywalker.com/" rel="nofollow">Dependency Walker</a> o.ä. nachschauen) - was genau willst du denn machen <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f615.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--confused_face"
      title=":confused:"
      alt="😕"
    /></p>
</blockquote>
<p>ja ich will die Icmp.dll benutzen! weiß aber nicht was da alles drinnen ist..</p>
<p>cu</p>
</blockquote>
<p>Meinst Du die ICMP.DLL von Windows?</p>
<p>Wenn Du ein einigermaßen aktuelles PSDK hast, findest Du die Infos in der MSDN...</p>
<p>(zum Beispiel <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/iphlp/iphlp/ip_helper_start_page.asp" rel="nofollow">hier!</a>)</p>
]]></description><link>https://www.c-plusplus.net/forum/post/572949</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/572949</guid><dc:creator><![CDATA[Hepi]]></dc:creator><pubDate>Sun, 01 Aug 2004 20:28:04 GMT</pubDate></item></channel></rss>