'Exports' naming convention - how does it work? - Stack Overflow most recent 30 from stackoverflow.com2009-11-23T07:12:49Zhttp://stackoverflow.com/feeds/question/307056http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/307056/exports-naming-convention-how-does-it-work0'Exports' naming convention - how does it work?PatrickvL2008-11-20T22:16:27Z2008-12-08T19:16:40Z
<p>What rules apply to the name that ends up in the exports section of an PE (Portable Executable)?
Roughly, I see names starting with an '_' underscore, a '?' question mark or an '@' at-sign. What do those mean, and what about the rest of the name?</p>
<p>Also - How can I reverse the naming convention into something more usable?</p>
http://stackoverflow.com/questions/307056/exports-naming-convention-how-does-it-work/307074#3070740Answer by PatrickvL for 'Exports' naming convention - how does it work?PatrickvL2008-11-20T22:20:32Z2008-11-20T22:20:32Z<p>I should have looked a little longer before asking this - as I just found an answer to this:</p>
<p>It's called 'name mangling', and here's a link explaning a bit about it : <a href="http://en.wikipedia.org/wiki/Name_mangling" rel="nofollow">http://en.wikipedia.org/wiki/Name_mangling</a></p>
<p>My apologies for bothering you; Cheers!</p>
http://stackoverflow.com/questions/307056/exports-naming-convention-how-does-it-work/307076#3070763Answer by Eric for 'Exports' naming convention - how does it work?Eric2008-11-20T22:20:43Z2008-11-20T22:20:43Z<p>I think you are refering to "dll name mangling"</p>
<p><a href="http://cplus.about.com/gi/dynamic/offsite.htm?zi=1/XJ&sdn=cplus&cdn=compute&tm=4&gps=352_1578_1062_840&f=00&su=p284.9.336.ip_p504.1.336.ip_&tt=2&bt=1&bts=0&zu=http%3A//theory.uwinnipeg.ca/gnu/gcc/gxxint_15.html" rel="nofollow">name mangling</a></p>
<p>It's used to make sure exports names are unique</p>
<p>You can specify a .def file which will make it easier to use afterwards</p>
<p>Simply put, a .def file is just a text file containing the following structure</p>
<pre><code>LIBRARY "MyDll"
EXPORTS
exportFunction1
</code></pre>
http://stackoverflow.com/questions/307056/exports-naming-convention-how-does-it-work/315639#3156390Answer by PatrickvL for 'Exports' naming convention - how does it work?PatrickvL2008-11-24T21:55:01Z2008-11-24T21:55:01Z<p>One other thing : Jcl contains yet another very usefull function to decode these symbols.
You can find it in JclPeImage; It's called PeUnmangleName - which is an extension of the UndecorateSymbolNameA/W WinAPI.</p>