Stopped Windows plugin loader from throwing #4661

System error message hidden with 'SetErrorMode(SEM_FAILCRITICALERRORS)'
This commit is contained in:
Nick Bolton 2015-05-19 14:40:33 +01:00
parent 46527ded56
commit 11a7d2c4c2
2 changed files with 6 additions and 2 deletions

View File

@ -60,6 +60,9 @@ ArchMiscWindows::cleanup()
void
ArchMiscWindows::init()
{
// stop windows system error dialogs from showing.
SetErrorMode(SEM_FAILCRITICALERRORS);
s_dialogs = new Dialogs;
}

View File

@ -60,8 +60,9 @@ ArchPluginWindows::load()
HINSTANCE library = LoadLibrary(path.c_str());
if (library == NULL) {
LOG((CLOG_ERR "failed to load plugin: %s %d", (*it).c_str(), GetLastError()));
throw XArch(new XArchEvalWindows);
String error = XArchEvalWindows().eval();
LOG((CLOG_ERR "failed to load plugin '%s', error: %s", (*it).c_str(), error.c_str()));
continue;
}
void* lib = reinterpret_cast<void*>(library);