Skip to content

Commit a95efce

Browse files
author
Colin Robertson
authored
Merge pull request #824 from MSDN-WhiteKnight/patch-1
Update linker-support-for-delay-loaded-dlls.md
2 parents 6a3a5e4 + 527f919 commit a95efce

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/build/reference/linker-support-for-delay-loaded-dlls.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ The Visual C++ linker now supports the delayed loading of DLLs. This relieves yo
1010

1111
Before Visual C++ 6.0, the only way to load a DLL at run time was by using **LoadLibrary** and **GetProcAddress**; the operating system would load the DLL when the executable or DLL using it was loaded.
1212

13-
Beginning with Visual C++ 6.0, when statically linking with a DLL, the linker provides options to delay load the DLL until the program calls a function in that DLL.
13+
Beginning with Visual C++ 6.0, when implicitly linking with a DLL, the linker provides options to delay load the DLL until the program calls a function in that DLL.
1414

1515
An application can delay load a DLL using the [/DELAYLOAD (Delay Load Import)](../../build/reference/delayload-delay-load-import.md) linker option with a helper function (default implementation provided by Visual C++). The helper function will load the DLL at run time by calling **LoadLibrary** and **GetProcAddress** for you.
1616

@@ -45,4 +45,4 @@ The following topics describe delay loading DLLs:
4545
## See Also
4646

4747
[DLLs in Visual C++](../../build/dlls-in-visual-cpp.md)<br/>
48-
[Linking](../../build/reference/linking.md)
48+
[Linking](../../build/reference/linking.md)

0 commit comments

Comments
 (0)