How does one perform the delayed loading of a DLL in version 6 of VC?
Thanks
Printable View
How does one perform the delayed loading of a DLL in version 6 of VC?
Thanks
From MSDN documentation on DELAYLOAD
/DELAYLOAD:dllname
This option causes delayed loading of DLLs. The dllname specifies a DLL to delay load. You can use this option as many times as necessary to specify as many DLLs as you choose. You must link your program with Delayimp.lib or implement your own delay-load helper function.