/DELAYLOAD (Delay Load Import)

/DELAYLOAD:dllname

Parameters

  • dllname
    The name of a DLL that you want to delay load.

Remarks

The /DELAYLOAD option causes the DLL that's specified by dllname to be loaded only on the first call by the program to a function in that DLL. For more information, see Linker Support for Delay-Loaded DLLs. You can use this option as many times as necessary to specify as many DLLs as you choose. You must use Delayimp.lib when you link your program, or you can implement your own delay-load helper function.

The /DELAY option specifies binding and loading options for each delay-loaded DLL.

To set this linker option in the Visual Studio development environment

  1. Open the project's Property Pages dialog box. For details, see Working with Project Properties.

  2. In the Linker folder, select the Input property page.

  3. Modify the Delay Loaded DLLs property.

To set this linker option programmatically

See Also

Reference

Setting Linker Options

Linker Options