|
|
|
@ -6,7 +6,7 @@
|
|
|
|
|
#define OPENMW_GUI_HPP
|
|
|
|
|
|
|
|
|
|
#define GUIFUNCTIONS \
|
|
|
|
|
{"MessageBox", GUIFunctions::MessageBox},\
|
|
|
|
|
{"_MessageBox", GUIFunctions::_MessageBox},\
|
|
|
|
|
{"CustomMessageBox", GUIFunctions::CustomMessageBox},\
|
|
|
|
|
{"InputDialog", GUIFunctions::InputDialog},\
|
|
|
|
|
{"SetMapVisibility", GUIFunctions::SetMapVisibility},\
|
|
|
|
@ -15,7 +15,7 @@
|
|
|
|
|
class GUIFunctions
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
static void MessageBox(unsigned short pid, int id, const char *label) noexcept;
|
|
|
|
|
static void _MessageBox(unsigned short pid, int id, const char *label) noexcept;
|
|
|
|
|
static void CustomMessageBox(unsigned short pid, int id, const char *label, const char *buttons) noexcept;
|
|
|
|
|
static void InputDialog(unsigned short pid, int id, const char *label) noexcept;
|
|
|
|
|
|
|
|
|
|