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
Printable View
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
The .def file just gives you the function definitions:...or similar. You should be able to just make a Declare statement matching the C prototype.Code:LIBRARY "mylib.dll"
EXPORT
func
another
my_code