A DLL is a DLL
Whether you
create a DLL by compiling a source file and linking to the correct DLL
format
or assemble precompiled objects and create the DLL which creates the headers
for the exported functions and variables (essentially identifying the exact
signature needed by the linker)
really do
When referencing a dll function you must know its full signature to property
reference it..thus the need for an export specification
when creating a Static Lib *.a you can statically link in the entire library
into the binary and not worry about linker hunting down an exported function
(since it is
2 matches
Mail list logo