|
-
Jun 17th, 2008, 03:20 AM
#1
Thread Starter
Member
[RESOLVED] Including Dll in a Dll
Dear Experts,
I would like to make a dll file, in which i want to include another dll file.
How shall i do this?
-
Jun 17th, 2008, 04:19 AM
#2
Re: Including Dll in a Dll
For what purpose - why do you wish to include a DLL inside of another DLL???
-
Jun 17th, 2008, 01:33 PM
#3
Re: Including Dll in a 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.
-
Jun 18th, 2008, 02:50 AM
#4
Thread Starter
Member
Re: Including Dll in a Dll
Thanks jmsrickland. Its working fine.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|