If I use a import library to implement load-time dynamic linking with a Windows system dll, which directory search order will be used?
Does it end up in the equivalent to LoadLibrary("Iphlpapi.dll")? Will it use a fully qualified path (i.e. LoadLibrary("C:\\windows\\system32\\Iphlpapi.dll")?
Some commonly used dlls ("known dlls") apparently receive special treatment, but how about other system dlls such as Iphlapi.dll?
Is it vulnerable to a DLL preloading attack?