'Exports' naming convention - how does it work? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-09T07:07:49Z http://stackoverflow.com/feeds/question/307056 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/307056/exports-naming-convention-how-does-it-work 0 'Exports' naming convention - how does it work? PatrickvL 2008-11-20T22:16:27Z 2008-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#307074 0 Answer by PatrickvL for 'Exports' naming convention - how does it work? PatrickvL 2008-11-20T22:20:32Z 2008-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#307076 3 Answer by Eric for 'Exports' naming convention - how does it work? Eric 2008-11-20T22:20:43Z 2008-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&amp;sdn=cplus&amp;cdn=compute&amp;tm=4&amp;gps=352_1578_1062_840&amp;f=00&amp;su=p284.9.336.ip_p504.1.336.ip_&amp;tt=2&amp;bt=1&amp;bts=0&amp;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#315639 0 Answer by PatrickvL for 'Exports' naming convention - how does it work? PatrickvL 2008-11-24T21:55:01Z 2008-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>