embed all required DLLs in one dll

578 views Asked by At

I am creating ActiveX control with visual c++ 6.

my control uses some DLLs, and I want to embed all those DLLs in the output DLL

how can I do That?

1

There are 1 answers

0
1stCLord On

You should be aware that the security concerns in a runtime that old, on top of that the code the compiler generates will be insanely fat and slow.

This existing Stack Overflow Answer answers your question as well as I could - https://stackoverflow.com/a/3595965/6476520