2 * Wrapper function to load a DLL out of c:\windows\system32 without
3 * going through the full DLL search path. (Hence no attack is
4 * possible by placing a substitute DLL earlier on that path.)
9 HMODULE
load_system32_dll(const char *libname
)
14 fullpath
= dupcat(get_system_dir(), "\\", libname
);
15 ret
= LoadLibrary(fullpath
);