Qt Creator/MinGW: Add some function to the static .lib part of a DLL
-
Hi,
the .lib part of a windows dll is nothing for static linkage.
windows knows two types of libraries:dynamic ones (with a .dll containing the binary code and a .lib file which knows the offsets inside the dll)
static ones, where the objects are stored inside the lib and linked to the client.
EDIT: by the way, this is valid for the MS compiler