If I do
LoadLibrary("MyTest.dll")
Windows will locate and load it from "C:TestFolderTestMyTest.dll"
, because "C:TestFolderTest"
is in %PATH%
folder.
How can I emulate same function? I need to locate C:TestFolderTestMyTest.dll
(C:TestFolderTest
is in %PATH%
) by passing MyTest.dll
as an argument to a function. Is there such an API? or a function?
P.S. I can't do LoadLibrary and then GetModuleHandle and finding Path, sometimes this DLL could be malicious DLL and I can't load it. So I need to find PATH without having to load it.
See Question&Answers more detail:os