dynamic link library

from HTYP, the free directory anyone can edit if they can prove to me that they're not a spambot
Jump to navigation Jump to search

Overview

A dynamic link library, or DLL, is a kind of file used within Microsoft Windows. It contains compiled, executable (i.e. runtime) code which may be called from other code without having to be (statically) linked during the other code's compile process. DLL files can be updated without requiring the calling code to be updated, and multiple callers may use the same DLL file.

Linux has a similar concept of shared library files, which typically use the file extension .so.

Links

Reference

Resources