get-graphics-offsets: Set error mode to SEM_FAILCRITICALERRORS
This prevents spurious dialog boxes appearing, such as "No disk is in the drive" if the application attempts to access an invalid drive.
This commit is contained in:
@@ -15,6 +15,8 @@ int main(int argc, char *argv[])
|
||||
wc.lpfnWndProc = (WNDPROC)DefWindowProcA;
|
||||
wc.lpszClassName = DUMMY_WNDCLASS;
|
||||
|
||||
SetErrorMode(SEM_FAILCRITICALERRORS);
|
||||
|
||||
if (!RegisterClassA(&wc)) {
|
||||
printf("failed to register '%s'\n", DUMMY_WNDCLASS);
|
||||
return -1;
|
||||
|
Reference in New Issue
Block a user