I have a project structured as follows:
exe
|
dll
|
_______________________
| | |
lib1.lib lib2.lib ... libn.lib
Problem: I need to make the .dll export some symbols that are required by .exe from the .libs linked into this .dll. __declspec(dllexport)
has no effect on static libs. How to do this?
Ideally, I also want to select which class need to be exported from those .libs, as opposed to exporting everything.