well, if you've built (for example) MyDLL.dll, then the functions available will be in the MyDLL.def file. Then, insert a Declare statement into a module in your VB project.
eg:
Code:
long TheFunction(int firstnumber, char* astring, float another) {
...
}
is written as:
Code:
Declare Function TheFunction Lib "MyDLL" (firstnumber as Integer, astring as String, another as Single)