Add ui_message_window_buttons/ui_message_window_response

This commit is contained in:
twinaphex 2016-06-08 06:17:26 +02:00
parent b7d3ed5264
commit 793d0de45c
1 changed files with 16 additions and 0 deletions

View File

@ -31,6 +31,22 @@
RETRO_BEGIN_DECLS
enum ui_message_window_buttons
{
UI_MSG_WINDOW_OK = 0,
UI_MSG_WINDOW_OKCANCEL,
UI_MSG_WINDOW_YESNO,
UI_MSG_WINDOW_YESNOCANCEL
};
enum ui_message_window_response
{
UI_MSG_RESPONSE_OK = 0,
UI_MSG_RESPONSE_CANCEL,
UI_MSG_RESPONSE_YES,
UI_MSG_RESPONSE_NO
};
typedef struct ui_application
{
bool (*pending_events)(void);