I need to generate a .def file for my .DLL file is this possible. Reason is that I'm trying to link my DLL, created with VB 6 to a program that needs a .def to validate the entry point.
Printable View
I need to generate a .def file for my .DLL file is this possible. Reason is that I'm trying to link my DLL, created with VB 6 to a program that needs a .def to validate the entry point.
If you created a .dll with VB it is an ActiveX dll. These create interfaces.
.DEF files are part of creating .dll's in c++ that do not expose an interface. They define the functions that are exported.
This .def defines one function in a dllExport module:
Quote:
LIBRARY "cpuspeed"
DESCRIPTION 'CpuSpeed Windows Dynamic Link Library'
EXPORTS
GetCpuSpeed @ 1