I\'m using Visual Studio C++ 2005 on Windows XP.
I have created a DLL shared library using Visual Studio C++ 2005.
However, I am not sure how to link it. Nor
This article explains Windows dlls well.
The .LIB file associated with a DLL describes what (exported) symbols are present in the DLL, together with their locations.
When you create the DLL there should be a .lib file created for the purpose of dynamic linking. You can use these just as you would static .lib files.