In my company we use .def files to specify the symbols that need to be exported. (I wish I could use a more modern and automated technique, unfortunately, the guys who decide live back in the eighties).

Writing a .def file by hand, using manual copy-paste is boring and error-prone but so far I can live with it.

However, I need to write a similar .def file for the 64 bits version of the DLL. The name decoration of several function changed and I wonder if there is a way to generate a .def file for the 64 bits version from the 32 bits version.

Are you aware of any tool that might help me ? Is this even realistic ? I really don't feel like I want to do it by hand one more time. Any solution, even one that involves coding my own tool, is welcome.

Thank you.

link|improve this question

Hey, I was alive back in the 80's too! – John Dibling Jan 5 '11 at 16:47
feedback

2 Answers

up vote 2 down vote accepted

I would probably __declspec(dllexport) the symbols I wanted, compile, and then run dumpbin /exports on the resulting DLL to get the mangled names, and then you can remove the __declspec and make a .def file.

link|improve this answer
+1. Thanks for the idea. Sounds effective. However I'd like to reduce modifications to the source code to a minimum. I guess using a macro to conditionally put/remove the __declspec statement without modifying the source code should work ? – ereOn Jan 5 '11 at 15:30
Adding a macro or adding __declspec is going to change the code the same amount. I don't see any risk there. But if you really don't want to change code I guess you could compile it as debug, load an EXE that does loadlibrary on the DLL into windbg and do "x Mymodule!*" which will list all the symbols and then you can pick the ones you want out of there. – jcopenha Jan 5 '11 at 15:37
feedback

Tell your boss to go back to the 80's. Seriously, this is not a portable way to export symbol names. What if the C++ compiler changes the name mangling scheme? Then you'd have to do this (what jcopenha said) all over again. What if you don't work there when it happens? Is another poor soul going to have to spend valuable time to find out what and how to do it? I would try to convince the boss to use __declspec(dllexport). It'll save time now, and possibly time in the future.

I am assuming you are exporting classes and overloaded functions. If you are not, then I'd export the functions with C names instead. Those names are not mangled, and will not change.

link|improve this answer
I am indeed exporting classes. They want to use .def file to "hide" the function name and use ordinal numbers instead (to prevent user from guessing what functions are exported...) I believe this is an awful reason and that it won't stop any gifted "hacker" to find the functions signatures. – ereOn Jan 5 '11 at 19:08
Ouch. Well, I would try to automate it in the build process. Create a separate build solution that uses __declspec() (hidden in a macro that expands to nothing in regular builds). Run dumpbin on the output, and create a .def file based on the dumpbin results, and merge it into the project. That way it's fairly automated, and will not blow up if you ever switch to a different compiler. You just have to remeber to use the macro. – Jörgen Sigvardsson Jan 5 '11 at 20:03
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.