Foundation
Loading...
Searching...
No Matches
Enums.hpp
Go to the documentation of this file.
1#pragma once
2namespace Foundation::Native {
3 enum class MessageBoxType : int {
4 Ok = 0,
5 OkCancel = 1,
6 YesNo = 2,
8 };
9 enum class MessageBoxIcon : int {
10 Info = 0,
11 Warning = 1,
12 Error = 2,
13 Question = 3
14 };
15 enum class MessageBoxResult : int {
16 No = 0,
17 Yes = 1,
18 Cancel = 2
19 };
20}
Platform-dependent application abstractions.
Definition Application.cpp:5
MessageBoxType
Definition Enums.hpp:3
MessageBoxIcon
Definition Enums.hpp:9
MessageBoxResult
Definition Enums.hpp:15