11#ifndef __MUTEKI_UI_VIEWS_MESSAGEBOX_H__
12#define __MUTEKI_UI_VIEWS_MESSAGEBOX_H__
Common include file for all muteki-shims headers.
#define UTF16
"Portable" Besta UTF-16 type used by other headers.
Definition common.h:54
message_box_type_e
Message box types.
Definition messagebox.h:31
@ MB_BUTTON_CANCEL
Provide Cancel button on the message box.
Definition messagebox.h:68
@ MB_ICON_QUESTION
Display a question-mark icon on the message box.
Definition messagebox.h:52
@ MB_BUTTON_YES
Provide Yes button on the message box.
Definition messagebox.h:56
@ MB_ICON_INFO
Display an info icon (lower case i) on the message box.
Definition messagebox.h:44
@ MB_BUTTON_NO
Provide No button on the message box.
Definition messagebox.h:60
@ MB_DEFAULT
The default type.
Definition messagebox.h:36
@ MB_ICON_WARNING
Display a warning (exclamation-point) icon on the message box.
Definition messagebox.h:48
@ MB_BUTTON_OK
Provide OK button on the message box.
Definition messagebox.h:64
@ MB_ICON_ERROR
Display an error (stop-sign) icon on the message box.
Definition messagebox.h:40
@ MB_BUTTON_NONE
Do not show any button.
Definition messagebox.h:74
int MessageBox(const UTF16 *text, unsigned short type)
High level message box function.
message_box_result_e
Results returned by the MessageBox() function after the user dismisses the message box.
Definition messagebox.h:80
@ MB_RESULT_NO
The No button was pressed by the user.
Definition messagebox.h:102
@ MB_RESULT_CANCEL
The Cancel button was pressed by the user.
Definition messagebox.h:91
@ MB_RESULT_OK
The OK button was pressed by the user.
Definition messagebox.h:86
@ MB_RESULT_YES
The Yes button was pressed by the user.
Definition messagebox.h:97