dll and static lib

  • Thread starter Thread starter Noah Roberts
  • Start date Start date
N

Noah Roberts

I would like to compose a dll of several static libraries. This is to
modularize the code a bit but keep the whole thing in one package
instead of having multiple dll's to distribute. Is there any way at all
to do this? I can't find any method of exporting a symbol from a dll
that is implemented in a static library linked into it.
 
Noah Roberts said:
I would like to compose a dll of several static libraries. This is to
modularize the code a bit but keep the whole thing in one package instead
of having multiple dll's to distribute. Is there any way at all to do
this? I can't find any method of exporting a symbol from a dll that is
implemented in a static library linked into it.

Tried the EXPORTS section of a ".def" linker definition file?
 
Back
Top