Suppressing errors in LoadLibrary

501 Views Asked by At

I'm trying to get rid of the error messages Windows sometimes pops when loading a DLL.

I tried to do the following:

UINT oldErrorMode = SetErrorMode(SEM_FAILCRITICALERRORS);
SetErrorMode(oldErrorMode | SEM_FAILCRITICALERRORS);

LoadLibrary(myDll);

SetErrorMode(oldErrorMode);

But I'm still getting the error windows, I tried to load several DLLs to make sure they don't remove the SerErrorMode() so that's not the case.

Does anybody has an idea what else can I try?

Thanks

0

There are 0 best solutions below