CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    May 1999
    Location
    Fort Worth Texas
    Posts
    614

    Delayed loading of DLL in VC 6

    How does one perform the delayed loading of a DLL in version 6 of VC?

    Thanks


  2. #2
    Guest

    Re: Delayed loading of DLL in VC 6

    From MSDN documentation on DELAYLOAD

    /DELAYLOADllname

    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.




Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured