#ifndef _NTEXAPI_H
#if (PHNT_MODE != PHNT_MODE_KERNEL)
// Hard errors
typedef enum _HARDERROR_RESPONSE_OPTION
{
OptionAbortRetryIgnore,
OptionOk,
OptionOkCancel,
OptionRetryCancel,
OptionYesNo,
OptionYesNoCancel,
OptionShutdownSystem,
OptionOkNoWait,
OptionCancelTryContinue
} HARDERROR_RESPONSE_OPTION;
View code on GitHub
This enumerated type is used for specify type of MessageBox
with error description in a call to NtRaiseHardError
.
Visible buttons: ABORT, RETRY, IGNORE
Visible buttons: OK
Visible buttons: OK, CANCEL
Visible buttons: RETRY, CANCEL
Visible buttons: YES, NO
Visible buttons: YES, NO, CANCEL
???