<?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[interface aus DLL extrahieren]]></title><description><![CDATA[<p>hab hier ne DLL mit ewig vielen methoden, die ich nachbauen möchte. hab jetzt irgendwie keine lust, den ganzen krempel von hand zu schreiben <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f603.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--grinning_face_with_big_eyes"
      title=":D"
      alt="😃"
    /> gibs tools, die nen interface aus einer DLL extrahieren können?</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/197498/interface-aus-dll-extrahieren</link><generator>RSS for Node</generator><lastBuildDate>Tue, 30 Jun 2026 00:04:37 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/197498.rss" rel="self" type="application/rss+xml"/><pubDate>Sun, 11 Nov 2007 11:59:23 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to interface aus DLL extrahieren on Sun, 11 Nov 2007 11:59:23 GMT]]></title><description><![CDATA[<p>hab hier ne DLL mit ewig vielen methoden, die ich nachbauen möchte. hab jetzt irgendwie keine lust, den ganzen krempel von hand zu schreiben <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f603.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--grinning_face_with_big_eyes"
      title=":D"
      alt="😃"
    /> gibs tools, die nen interface aus einer DLL extrahieren können?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1401278</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1401278</guid><dc:creator><![CDATA[thordk]]></dc:creator><pubDate>Sun, 11 Nov 2007 11:59:23 GMT</pubDate></item><item><title><![CDATA[Reply to interface aus DLL extrahieren on Sun, 11 Nov 2007 12:27:35 GMT]]></title><description><![CDATA[<p>Wenn es sich um ein C-Interface handelt: nein, da keinerlei Informationen über die Funktionssignaturen in der DLL vorhanden sind.<br />
Wenn die DLL C++-Klassen und -Funktionen exportiert oder ein COM-Interface hat, dürfte das eingeschränkt möglich sein (Datenstrukturen müßten bekannt sein), jedoch ist mir kein spezielles Tool für diesen Zweck bekannt.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1401292</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1401292</guid><dc:creator><![CDATA[audacia]]></dc:creator><pubDate>Sun, 11 Nov 2007 12:27:35 GMT</pubDate></item><item><title><![CDATA[Reply to interface aus DLL extrahieren on Sun, 11 Nov 2007 14:04:30 GMT]]></title><description><![CDATA[<p>sind reine c++ methoden und strukturen. an die signaturen kommt man problemlos dran. hm, vielleicht schreib ich mir dann selbst son tool.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1401342</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1401342</guid><dc:creator><![CDATA[thordk]]></dc:creator><pubDate>Sun, 11 Nov 2007 14:04:30 GMT</pubDate></item><item><title><![CDATA[Reply to interface aus DLL extrahieren on Sun, 11 Nov 2007 15:59:27 GMT]]></title><description><![CDATA[<p>Beim Borland C++ Builder gibt es das Tool 'ImpDef', welches aus einer DLL eine DEF-Datei erzeugt. Die DEF-Datei enthält dann sowohl die 'mangled' als auch 'unmangled'-Namen der Funktionen inklusive Parameter.<br />
Die Namen von Template-Klassen sind dann unaufgelöst, z.B.</p>
<pre><code>cgicc::Cgicc::getElement(const std::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;&amp;)

statt

cgicc::Cgicc::getElement(const std::string&amp;)
</code></pre>
<p>Klar, daß er die typedefs 'string', 'wstring' etc. nicht kennt, aber mit Find &amp; Replace hat man dann wieder die gewohnte Form.</p>
<p>Leider scheint der Rückgabewert nicht enthalten zu sein...</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1401432</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1401432</guid><dc:creator><![CDATA[Th]]></dc:creator><pubDate>Sun, 11 Nov 2007 15:59:27 GMT</pubDate></item></channel></rss>