specify def in project settings

  • Thread starter Thread starter jerryk571
  • Start date Start date
J

jerryk571

I am trying to use a 3rd party dll that only comes with a .def file (no
..lib). Where do I specify in project settings to use that .def file? I am
using Visual Studio 6.0.

Thank you.
Jerry
 
I am trying to use a 3rd party dll that only comes with a .def file (no
.lib). Where do I specify in project settings to use that .def file?

Jerry,

A .def file is usually used only to create the DLL. To use a DLL you
usually need a header file (.h) and a library (.lib) as well as the
DLL itself.

Dave
 
Back
Top