<?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-dateien hinzufügen]]></title><description><![CDATA[<p>Hallo</p>
<p>Kann mir jemand sagen wie man DLL-Dateien in WinApi-Projekte einfügt.<br />
(mir hat mal jemand gesagt man kann keine dummen Fragen stellen) <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f642.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--slightly_smiling_face"
      title=":)"
      alt="🙂"
    /></p>
<p>Danke<br />
noone999</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/111187/dll-dateien-hinzufügen</link><generator>RSS for Node</generator><lastBuildDate>Wed, 01 Jul 2026 00:31:57 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/111187.rss" rel="self" type="application/rss+xml"/><pubDate>Sun, 29 May 2005 13:12:20 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to dll-dateien hinzufügen on Sun, 29 May 2005 13:12:20 GMT]]></title><description><![CDATA[<p>Hallo</p>
<p>Kann mir jemand sagen wie man DLL-Dateien in WinApi-Projekte einfügt.<br />
(mir hat mal jemand gesagt man kann keine dummen Fragen stellen) <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f642.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--slightly_smiling_face"
      title=":)"
      alt="🙂"
    /></p>
<p>Danke<br />
noone999</p>
]]></description><link>https://www.c-plusplus.net/forum/post/798279</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/798279</guid><dc:creator><![CDATA[noone999]]></dc:creator><pubDate>Sun, 29 May 2005 13:12:20 GMT</pubDate></item><item><title><![CDATA[Reply to dll-dateien hinzufügen on Sun, 29 May 2005 13:27:23 GMT]]></title><description><![CDATA[<p>Was genau meinst du damit? Normalerweise hat man eben lib-Files, die man mit-linken kann. Oder du lädst die DLL dynamisch mit LoadLibrary. Oder was genau meintest du?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/798290</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/798290</guid><dc:creator><![CDATA[flenders]]></dc:creator><pubDate>Sun, 29 May 2005 13:27:23 GMT</pubDate></item><item><title><![CDATA[Reply to dll-dateien hinzufügen on Sun, 29 May 2005 13:33:42 GMT]]></title><description><![CDATA[<p>Beispiel für dynamisches (explizites) laden einer dll:</p>
<p>um die Funktion &quot;GetCPUTemp&quot; aus der &quot;Asus.dll&quot; in deimem Programm als &quot;CPUTemperatur()&quot; zur verfügung zu stellen</p>
<pre><code class="language-cpp">//-----------------------------
typedef Rückgabetyp __stdcall CPUTEMP();
HINSTANCE h = LoadLibrary(&quot;Asus.dll&quot;);
CPUTEMP* CPUTemperatur=(CPUTEMP*)GetProcAddress(h,&quot;GetCPUTemp&quot;);
//-----------------------------
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/798292</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/798292</guid><dc:creator><![CDATA[ink3n]]></dc:creator><pubDate>Sun, 29 May 2005 13:33:42 GMT</pubDate></item><item><title><![CDATA[Reply to dll-dateien hinzufügen on Mon, 30 May 2005 10:46:33 GMT]]></title><description><![CDATA[<p>hi</p>
<p>klasse, war genau was ich brauchte</p>
<p>danke<br />
noone999</p>
]]></description><link>https://www.c-plusplus.net/forum/post/798855</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/798855</guid><dc:creator><![CDATA[noone999]]></dc:creator><pubDate>Mon, 30 May 2005 10:46:33 GMT</pubDate></item></channel></rss>