Difference between revisions of "dynamic link library"
Jump to navigation
Jump to search
(New page: ==Overview== category:computer terminologyA dynamic link library, or DLL, is a kind of file used within Microsoft Windows. It contains compiled, executable (i.e. runtime) c...) |
(→Resources: DLL-files.com) |
||
Line 7: | Line 7: | ||
* {{wikipedia}} | * {{wikipedia}} | ||
===Resources=== | ===Resources=== | ||
− | * [http://dlldump.com DLL Dump]: free [ | + | * [http://dlldump.com DLL Dump]: free DLL files, no registration needed |
+ | * [http://www.dll-files.com/ DLL-files.com]: free DLL files, no registration needed |
Latest revision as of 20:05, 12 June 2007
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
- DLL Dump: free DLL files, no registration needed
- DLL-files.com: free DLL files, no registration needed