Hello ,
to use your dll , create a new project (a win32 console application for example) in vc++. In the project settings>link>Object/Library modules write the path and the name of your lib , for example
c:\mystuff\mystuff.lib
inside the code , include the .h file like:
#include "c:\mystuff\mystuff.h"
in the tools>options>directories , set the directories of the include files and the directories of the lib files. These will be the directories where vc++ will find for your .h and .lib files.
Now you can use the code that you made for your dll.
Thor da Silva