xtd 0.2.0
Loading...
Searching...
No Matches
assert_dialog_results.h
Go to the documentation of this file.
1
5#pragma once
7#if !defined(__XTD_CORE_NATIVE_LIBRARY__)
8#error "Do not include this file: Internal use only"
9#endif
11
12#include <cstdint>
13
20constexpr int32_t ADR_ABORT = 3;
27constexpr int32_t ADR_RETRY = 4;
34constexpr int32_t ADR_IGNORE = 5;
constexpr int32_t ADR_ABORT
The assert dialog return value is Abort (usually sent from a button labeled Abort).
Definition assert_dialog_results.h:20
constexpr int32_t ADR_IGNORE
The assert dialog return value is Ignore (usually sent from a button labeled Ignore).
Definition assert_dialog_results.h:34
constexpr int32_t ADR_RETRY
The assert dialog return value is Retry (usually sent from a button labeled Retry).
Definition assert_dialog_results.h:27