I have a DLL and I would like to use some of its functions.
#include
using namespace std;
extern \"C\" __declspec(dllimport) int Initializ
Under visual studio you can't link directly to DLL, you need import library.
So basically you have several options:
Create import library form dll and link to it. There are some tools coming with MinGW that do the job, they may actually work for you, AFAIK there are also some tools for MSVC.
This can be helpful: http://support.microsoft.com/kb/131313, not tested myself
:-)