My company has an in-house-developed COM object (developed in C++) that is critical to many of our business processes. We've recently discovered that it is dependent on two third party DLLs (we're learning how this all works as we go), and my boss wants me to try to import those DLLs so as to avoid any extra dependencies. I realize this is contrary to the very point of having DLLs (they cease being dynamically linked once they are imported like this), but it is nonetheless what I have been assigned, so I must try to find a way, if one exists.
The all mighty Google has yielded no answers -- is this possible? Can we include external DLLs in such a way that no extra DLLs need to be deployed on a system for the object to function?
The all mighty Google has yielded no answers -- is this possible? Can we include external DLLs in such a way that no extra DLLs need to be deployed on a system for the object to function?