when building a dll, how to make an dll delayed depend on another dll? Do I need to set up anything?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You have to specify the /DELAYLOAD linker option, followed by the names of the delay-loaded DLLs.
Note that a DLL delay-loading other DLLs should not call any delay-loaded functions from
DllMain().See Linker Support for Delay-Loaded DLLs for more details.