HARDERROR_RESPONSE - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
#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;

#endif
#endif

View code on GitHub

This enumeration type is used as a result of call NtRaiseHardError and specify user's response for error message.

ResponseReturnToCaller

???

ResponseNotHandled

???

ResponseAbort

ABORT button was pressed.

ResponseCancel

CANCEL button was pressed.

ResponseIgnore

IGNORE button was pressed.

ResponseNo

NO button was pressed.

ResponseOk

OK button was pressed.

ResponseRetry

RETRY button was pressed.

ResponseYes

YES button was pressed.

Documented by

See also