PDA

Click to See Complete Forum and Search --> : .Def file options


abhid
Oct 2nd, 2002, 05:21 AM
Hi all,
Does anybody know about .def file options? I am using .def file to use a dll (created in VC++) in VB.
Please let me know.
Thanks in advance.
Abhid

parksie
Oct 2nd, 2002, 05:44 AM
The .def file just gives you the function definitions:LIBRARY "mylib.dll"

EXPORT
func
another
my_code...or similar. You should be able to just make a Declare statement matching the C prototype.