Results 1 to 4 of 4

Thread: [RESOLVED] Including Dll in a Dll

  1. #1

    Thread Starter
    Member
    Join Date
    Mar 2008
    Posts
    35

    Resolved [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?

  2. #2
    Evil Genius alex_read's Avatar
    Join Date
    May 2000
    Location
    Espoo, Finland
    Posts
    5,538

    Re: Including Dll in a Dll

    For what purpose - why do you wish to include a DLL inside of another DLL???

    Please rate this post if it was useful for you!
    Please try to search before creating a new post,
    Please format code using [ code ][ /code ], and
    Post sample code, error details & problem details

  3. #3
    PowerPoster
    Join Date
    Jan 2008
    Posts
    11,074

    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.

  4. #4

    Thread Starter
    Member
    Join Date
    Mar 2008
    Posts
    35

    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
  •  



Click Here to Expand Forum to Full Width