I don't know how to do the following:
- I'm using MS Visual C++ 6.0
- I have a Win32 DLL project which is compilable.
- I have another project, this time a Win32 Console project which uses the DLL by including it's header file and linking the .lib file of the DLL.
Now I want to have another project, similar to the second BUT without using the header file and the lib file.
Is that possible? Everywhere I read you need either dll+lib+h or dll+h. If thought if you know the interfaces, a DLL file is sufficient?
Btw, by "using a DLL" I mean, using the Classes and Functions defined in the DLL.