ari 0.0.6

ari. the extras library.
1
2
3
4
5
6
7
8
9
10
use winapi::um::errhandlingapi::SetErrorMode;
use winapi::um::winbase::{SEM_FAILCRITICALERRORS, SEM_NOGPFAULTERRORBOX, SEM_NOOPENFILEERRORBOX};

pub(crate) fn disable_windows_error_reporting() {
    unsafe {
        if !cfg!(debug_assertions) {
            SetErrorMode(SEM_FAILCRITICALERRORS | SEM_NOGPFAULTERRORBOX | SEM_NOOPENFILEERRORBOX);
        }
    }
}