I\'m wondering if it\'s possible to combine multiple DLL\'s into 1. I\'m currently working on a C++ project that is dependent on many dynamic link libraries,so would it be
Its certainly not infeasible. The Dll format contains all the information you need to merge the code and data from multiple dlls into one, and rebase the resulting code.
this is not a standard feature of any toolchain I can think of though.