#ifndef _NTEXAPI_H
#if (PHNT_MODE != PHNT_MODE_KERNEL)
typedef enum _HARDERROR_RESPONSE
{
ResponseReturnToCaller,
ResponseNotHandled,
ResponseAbort,
ResponseCancel,
ResponseIgnore,
ResponseNo,
ResponseOk,
ResponseRetry,
ResponseYes,
ResponseTryAgain,
ResponseContinue
} HARDERROR_RESPONSE;
View code on GitHub
This enumeration type is used as a result of call NtRaiseHardError
and specify user's response for error message.
???
???
ABORT button was pressed.
CANCEL button was pressed.
IGNORE button was pressed.
NO button was pressed.
OK button was pressed.
RETRY button was pressed.
YES button was pressed.