As a followup to this thread, is it possible to embed a .dll into a .dll as an embedded resource?
That is to say, if Wrapper.dll relies on Wrapped.dll, and Wrapper.dll is an embedded resource of Game.exe, is it possible to make Wrapped.dll an embedded resource in Wrapper.dll?
Or, if not possible, is there an acceptable substitute using embedded resources that doesn't require Game.exe to know about Wrapped.dll?
Looking specifically for methods using embedded resources; this is, in part, a learning exercise.
This thread:
Embedding one dll inside another as an embedded resource and then calling it from my code
Seems to indicate that the Wrapped.dll will automatically be loaded as an embedded resource .dll using the method discussed in this threads' precursor.
Thanks.