#ifndef _NTEXAPI_H
#if (PHNT_MODE != PHNT_MODE_KERNEL)
/**
* The HARDERROR_RESPONSE enumeration specifies the response returned by the
* caller or user when handling a hard error condition.
*/
typedef enum _HARDERROR_RESPONSE
{
ResponseReturnToCaller,
ResponseNotHandled,
ResponseAbort,
ResponseCancel,
ResponseIgnore,
ResponseNo,
ResponseOk,
ResponseRetry,
ResponseYes,
ResponseTryAgain,
ResponseContinue
} HARDERROR_RESPONSE;
View code on GitHubNo description available.
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.