Dear Experts,
I would like to make a dll file, in which i want to include another dll file.
How shall i do this?
Printable View
Dear Experts,
I would like to make a dll file, in which i want to include another dll file.
How shall i do this?
For what purpose - why do you wish to include a DLL inside of another DLL???
Including a DLL in a DLL is the same approach as including a DLL in an EXE application.
Example:
I want to make a DLL called MyWinsock.dll. Basically I want it to have all the same functionality of the Windows Winsock.dll plus some of my own functionality.
So in the code I want to use Winsock.dll. I just add the API declares and the other stuff necessary and make sure that when I compile MyWinsock.dll it includes the Winsock.dll.
Many of the Window's DLLs already include other DLLs. It's quite common.
Thanks jmsrickland. Its working fine.