dllss....what are they used for ?

Jul 23, 2009 at 12:01pm
What are dll used for.....
Jul 23, 2009 at 12:12pm
Typical usage is to avoid statically linking a library (such as the C++ runtime library) into every executable. This saves a bit on memory usage since only a single copy of the library is loaded regardless of how many executables use it.

Another typical usage is to provide the ability to upgrade a the library without relinking the executable against the newer version. This is useful if there are bugs in the library that need to be fixed.

etc...
Jul 23, 2009 at 12:14pm
It also allows you to load different versions of code at run-time, like printer drivers for example.
Topic archived. No new replies allowed.