Tagged Questions
The setdlldirectory tag has no wiki summary.
4
votes
2answers
4k views
add custom DLL search path @ application startup
I'm racking my brain trying to come up with an elegant solution to a DLL load problem. I have an application that statically links to other lib files which load DLLs. I'm not loading the DLLs ...
3
votes
3answers
531 views
How to call WinAPI function SetDllDirectory() in Delphi?
I would like to prevent loading of malicious DLLs that may be possible through access of the current working directory as described in http://msdn.microsoft.com/en-us/library/ff919712(VS.85).aspx
The ...
1
vote
1answer
85 views
How might one cope with the ambiguous value produced by GetDllDirectory?
GetDllDirectory produces an ambiguous value. When the string this call produces is empty, it means one of the following:
nobody has called SetDllDirectory
somebody passed NULL to SetDllDirectory
...