// ntddk.h
BOOLEAN IoSetThreadHardErrorMode(
[in] BOOLEAN EnableHardErrors
);
View the official Windows Driver Kit DDI reference
No description available.
The IoSetThreadHardErrorMode routine enables or disables hard error reporting for the current thread.
EnableHardErrors
[in]Specifies whether hard error reporting to the user should be enabled or disabled for this thread. A value of TRUE enables hard error reporting. FALSE disables it.
IoSetThreadHardErrorMode returns TRUE if hard errors were enabled from this thread before this routine completed execution. Otherwise, this routine returns FALSE.
If hard errors are disabled for a given thread, calls to IoRaiseHardError will not display a message to the user indicating that a serious error has occurred. In addition, the IRP that is passed to IoRaiseHardError is completed without any data being copied into user buffers. Calling IoRaiseInformationalHardError after disabling hard errors causes that routine to always return FALSE for this thread.