- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I have a console program CONSOLE.EXE that calls routines in A.DLL, and A.DLL calls routines in B.DLL. I would like to eliminate the need to distribute B.DLL by embedding into A.DLL. How is that done? And if I want to embed A.DLL into CONSOLE.EXE how is that done?
Thanks,
Brian M.
Link Copied
2 Replies
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
You don't "embed a DLL". You build a static library instead of a DLL and link the executable to the static library(ies). You can also "embed" B.DLL by building A.DLL so that it links to the B static library.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Ok thanks, Steve. I'll see what I can do with that.
Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page