hollyhock
include
sdk
os
gui.hpp
Go to the documentation of this file.
1
24
#pragma once
25
#include "gui/button.hpp"
26
#include "gui/dialog.hpp"
27
#include "gui/dropDown.hpp"
28
#include "gui/label.hpp"
29
#include "gui/longLabel.hpp"
30
#include "gui/radioButton.hpp"
31
#include "gui/textBox.hpp"
32
33
const
int
BUTTON_OK = 1 << 5;
34
const
int
BUTTON_YES = 1 << 6;
35
const
int
BUTTON_NO = 1 << 7;
36
const
int
BUTTON_ABORT = 1 << 8;
37
const
int
BUTTON_RETRY = 1 << 9;
38
const
int
BUTTON_CANCEL = 1 << 10;
39
49
extern
"C"
50
void
GUI_DisplayMessageBox
(
int
unknown,
int
titleStringID,
int
contentStringID);
51
76
extern
"C"
77
void
*
GUI_DisplayMessageBox_Internal
(
78
int
unknown,
79
const
char
*titleString,
80
const
char
*contentPrefix,
const
char
*contentString,
81
int
buttons,
bool
disableCloseButton
82
);
GUI_DisplayMessageBox
void GUI_DisplayMessageBox(int unknown, int titleStringID, int contentStringID)
GUI_DisplayMessageBox_Internal
void * GUI_DisplayMessageBox_Internal(int unknown, const char *titleString, const char *contentPrefix, const char *contentString, int buttons, bool disableCloseButton)
Generated by
1.9.1