mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
35 lines
982 B
C
35 lines
982 B
C
|
#pragma once
|
||
|
|
||
|
#include <cstdint>
|
||
|
|
||
|
namespace Forms
|
||
|
{
|
||
|
// Specifies identifiers to indicate the return value of a dialog box.
|
||
|
enum class DialogResult
|
||
|
{
|
||
|
// Nothing is returned from the dialog box. This
|
||
|
// means that the modal dialog continues running.
|
||
|
None = 0,
|
||
|
// The dialog box return value is
|
||
|
// OK (usually sent from a button labeled OK).
|
||
|
OK = 1,
|
||
|
// The dialog box return value is Cancel (usually sent
|
||
|
// from a button labeled Cancel).
|
||
|
Cancel = 2,
|
||
|
// The dialog box return value is
|
||
|
// Abort (usually sent from a button labeled Abort).
|
||
|
Abort = 3,
|
||
|
// The dialog box return value is
|
||
|
// Retry (usually sent from a button labeled Retry).
|
||
|
Retry = 4,
|
||
|
// The dialog box return value is Ignore (usually sent
|
||
|
// from a button labeled Ignore).
|
||
|
Ignore = 5,
|
||
|
// The dialog box return value is
|
||
|
// Yes (usually sent from a button labeled Yes).
|
||
|
Yes = 6,
|
||
|
// The dialog box return value is
|
||
|
// No (usually sent from a button labeled No).
|
||
|
No = 7,
|
||
|
};
|
||
|
}
|