What is a DLL?
On This PageSUMMARYThis article describes what a dynamic link library (DLL) is and the various issues that may occur when you use DLLs. Then, this article describes some advanced issues that you should consider when you develop your own DLLs. In describing what a DLL is, this article describes dynamic linking methods, DLL dependencies, DLL entry points, exporting DLL functions, and DLL troubleshooting tools. This article finishes with a high-level comparison of DLLs to the Microsoft .NET Framework assemblies. INTRODUCTIONFor the Microsoft Windows operating systems that are listed
in the "Applies to" section, much of the functionality of the operating system
is provided by dynamic link libraries (DLL). Additionally, when you run a
program on one of these Windows operating systems, much of the functionality of
the program may be provided by DLLs. For example, some programs may contain
many different modules, and each module of the program is contained and
distributed in DLLs. The use of DLLs helps promote modularization of code, code reuse, efficient memory usage, and reduced disk space. Therefore, the operating system and the programs load faster, run faster, and take less disk space on the computer. When a program uses a DLL, an issue that is called dependency may cause the program not to run. When a program uses a DLL, a dependency is created. If another program overwrites and breaks this dependency, the original program may not successfully run. With the introduction of the Microsoft .NET Framework, most dependency problems have been eliminated by using assemblies. MORE INFORMATIONWhat is a DLL?A DLL is a library that contains code and data that can be used by more than one program at the same time. For example, in Windows operating systems, the Comdlg32 DLL performs common dialog box related functions. Therefore, each program can use the functionality that is contained in this DLL to implement an Open dialog box. This helps promote code reuse and efficient memory usage.By using a DLL, a program can be modularized into separate components. For example, an accounting program may be sold by module. Each module can be loaded into the main program at run time if that module is installed. Because the modules are separate, the load time of the program is faster, and a module is only loaded when that functionality is requested. Additionally, updates are easier to apply to each module without affecting other parts of the program. For example, you may have a payroll program, and the tax rates change each year. When these changes are isolated to a DLL, you can apply an update without needing to build or install the whole program again. The following list describes some of the files that are implemented as DLLs in Windows operating systems:
DLL advantagesThe following list describes some of the advantages that are provided when a program uses a DLL:
DLL dependenciesWhen a program or a DLL uses a DLL function in another DLL, a dependency is created. Therefore, the program is no longer self-contained, and the program may experience problems if the dependency is broken. For example, the program may not run if one of the following actions occurs:
The following list describes the changes that have been introduced in Microsoft Windows 2000 and in later Windows operating systems to help minimize dependency issues:
DLL troubleshooting toolsSeveral tools are available to help you troubleshoot DLL problems. The following tools are some of these tools.Dependency WalkerThe Dependency Walker tool can recursively scan for all dependent DLLs that are used by a program. When you open a program in Dependency Walker, Dependency Walker performs the following checks:
drive\Program Files\Microsoft Visual Studio\Common\Tools DLL Universal Problem SolverThe DLL Universal Problem Solver (DUPS) tool is used to audit, compare, document, and display DLL information. The following list describes the utilities that make up the DUPS tool:
247957 (http://support.microsoft.com/kb/247957/)
Using DUPS.exe to resolve DLL compatibility problems
DLL Help databaseThe DLL Help database helps you locate specific versions of DLLs that are installed by Microsoft software products. For more information about the DLL Help database, visit the following Microsoft Web site:http://support.microsoft.com/dllhelp/ (http://support.microsoft.com/dllhelp/) DLL developmentThis section describes the issues and the requirements that you should consider when you develop your own DLLs.Types of DLLsWhen you load a DLL in an application, two methods of linking let you call the exported DLL functions. The two methods of linking are load-time dynamic linking and run-time dynamic linking.Load-time dynamic linkingIn load-time dynamic linking, an application makes explicit calls to exported DLL functions like local functions. To use load-time dynamic linking, provide a header (.h) file and an import library (.lib) file when you compile and link the application. When you do this, the linker will provide the system with the information that is required to load the DLL and resolve the exported DLL function locations at load time.Run-time dynamic linkingIn run-time dynamic linking, an application calls either the LoadLibrary function or the LoadLibraryEx function to load the DLL at run time. After the DLL is successfully loaded, you use the GetProcAddress function to obtain the address of the exported DLL function that you want to call. When you use run-time dynamic linking, you do not need an import library file.The following list describes the application criteria for when to use load-time dynamic linking and when to use run-time dynamic linking:
The DLL entry pointWhen you create a DLL, you can optionally specify an entry point function. The entry point function is called when processes or threads attach themselves to the DLL or detached themselves from the DLL. You can use the entry point function to initialize data structures or to destroy data structures as required by the DLL. Additionally, if the application is multithreaded, you can use thread local storage (TLS) to allocate memory that is private to each thread in the entry point function. The following code is an example of the DLL entry point function.When the entry point function returns a FALSE value, the application will not start if you are using load-time
dynamic linking. If you are using run-time dynamic linking, only the individual
DLL will not load.The entry point function should only perform simple initialization tasks and should not call any other DLL loading or termination functions. For example, in the entry point function, you should not directly or indirectly call the LoadLibrary function or the LoadLibraryEx function. Additionally, you should not call the FreeLibrary function when the process is terminating. Note In multithreaded applications, make sure that access to the DLL global data is synchronized (thread safe) to avoid possible data corruption. To do this, use TLS to provide unique data for each thread. Exporting DLL functionsTo export DLL functions, you can either add a function keyword to the exported DLL functions or create a module definition (.def) file that lists the exported DLL functions.To use a function keyword, you must declare each function that you want to export with the following keyword: __declspec(dllexport) To use exported DLL functions in the application, you
must declare each function that you want to import with the following keyword:__declspec(dllimport) Typically, you would use one header file that has a define statement and an ifdef statement to separate the export statement and the import
statement.You can also use a module definition file to declare exported DLL functions. When you use a module definition file, you do not have to add the function keyword to the exported DLL functions. In the module definition file, you declare the LIBRARY statement and the EXPORTS statement for the DLL. The following code is an example of a definition file. Sample DLL and applicationIn Microsoft Visual C++ 6.0, you can create a DLL by selecting either the Win32 Dynamic-Link Library project type or the MFC AppWizard (dll) project type.The following code is an example of a DLL that was created in Visual C++ by using the Win32 Dynamic-Link Library project type. The following code is an example of a Win32
Application project that calls the exported DLL function in the
SampleDLL DLL. Note In load-time dynamic linking, you must link the SampleDLL.lib
import library that is created when you build the SampleDLL
project.In run-time dynamic linking, you use code that is similar to the following code to call the SampleDLL.dll exported DLL function. When you compile and link the SampleDLL application, the Windows
operating system searches for the SampleDLL DLL in the following locations in
this order:
The .NET Framework assemblyWith the introduction of Microsoft .NET and the .NET Framework, most of the problems that are associated with DLLs have been eliminated by using assemblies. An assembly is a logical unit of functionality that runs under the control of the .NET common language runtime (CLR). An assembly physically exists as a .dll file or as an .exe file. However, internally an assembly is very different from a Microsoft Win32 DLL.An assembly file contains an assembly manifest, type metadata, Microsoft intermediate language (MSIL) code, and other resources. The assembly manifest contains the assembly metadata that provides all the information that is required for an assembly to be self-describing. The following information is included in the assembly manifest:
The following list describes some of the features of assemblies compared to the features of Win32 DLLs:
REFERENCESFor more information about DLLs and the .NET Framework
assemblies, visit the following Microsoft Web sites: DLL Help database http://support.microsoft.com/dllhelp (http://support.microsoft.com/dllhelp) DLL conflicts http://msdn2.microsoft.com/en-us/library/ms811694.aspx (http://msdn2.microsoft.com/en-us/library/ms811694.aspx) Implementing side-by-side component sharing in applications http://msdn2.microsoft.com/en-us/library/ms811700.aspx (http://msdn2.microsoft.com/en-us/library/ms811700.aspx) How to build and service isolated applications and side-by-side assemblies for Windows XP http://msdn2.microsoft.com/en-us/library/ms997620.aspx (http://msdn2.microsoft.com/en-us/library/ms997620.aspx) Simplifying deployment and solving DLL conflicts with the .NET Framework http://msdn2.microsoft.com/en-us/netframework/aa497268.aspx (http://msdn2.microsoft.com/en-us/netframework/aa497268.aspx) The .NET Framework developer's guide: Assemblies http://msdn2.microsoft.com/en-us/library/hk5f40ct(vs.71).aspx (http://msdn2.microsoft.com/en-us/library/hk5f40ct(vs.71).aspx) Run-time dynamic linking http://msdn2.microsoft.com/en-us/library/ms685090.aspx (http://msdn2.microsoft.com/en-us/library/ms685090.aspx) Thread local storage http://msdn2.microsoft.com/en-us/library/ms686749.aspx (http://msdn2.microsoft.com/en-us/library/ms686749.aspx) APPLIES TO
| Article Translations
|

Back to the top
