 |
Types of Dynamic Linking
There are two methods for calling a Dynamic Link function. |
|
- Run-Time Dynamic Linking
- Loads DLL's at run-time. This calls the exported .DLL functions using GetProcAddress eliminating the need for an import library.
- Load-Time Dynamic Linking
- Makes calls to exported .DLLs as and treats them as local functions. An import library will provide the system with information needed to locate .dll functions when the application is loaded.
|
|
|
|
|
|