I do not know how to do the following:
- I am using MS Visual C ++ 6.0
- I have a Win32 DLL project that compiles.
- I have another project, this time a Win32 Console project that uses a DLL by including its header file and linking the .lib DLL file.
Now I want to have another project that looks like a second BUT without using a header file and a lib file.
Is it possible? Wherever I read, you need either dll + lib + h or dll + h. If you think you know the interfaces, is the dll file enough?
Btw, using "using DLLs", I mean, using classes and functions defined in DLLs.
source share