aboutsummaryrefslogtreecommitdiff
path: root/src/noui.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/noui.h')
-rw-r--r--src/noui.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/noui.h b/src/noui.h
index ad05e1c764..4ba496bf78 100644
--- a/src/noui.h
+++ b/src/noui.h
@@ -36,6 +36,8 @@ typedef void wxWindow;
#define wxHELP 0x00008000
#define wxMORE 0x00010000
#define wxSETUP 0x00020000
+// Force blocking, modal message box dialog (not just notification)
+#define wxMODAL 0x00040000
inline int MyMessageBox(const std::string& message, const std::string& caption="Message", int style=wxOK, wxWindow* parent=NULL, int x=-1, int y=-1)
{
@@ -67,4 +69,8 @@ inline void MainFrameRepaint()
{
}
+inline void InitMessage(const std::string &message)
+{
+}
+
#endif