mirror of
https://github.com/TTimo/GtkRadiant.git
synced 2025-01-10 20:10:56 +00:00
11 lines
378 B
C
11 lines
378 B
C
|
|
#if !defined(INCLUDED_GTKUTIL_MESSAGEBOX_H)
|
|
#define INCLUDED_GTKUTIL_MESSAGEBOX_H
|
|
|
|
#include "qerplugin.h"
|
|
|
|
typedef struct _GtkWidget GtkWidget;
|
|
/// \brief Shows a modal message-box.
|
|
EMessageBoxReturn gtk_MessageBox(GtkWidget *parent, const char* text, const char* title = "GtkRadiant", EMessageBoxType type = eMB_OK, EMessageBoxIcon icon = eMB_ICONDEFAULT);
|
|
|
|
#endif
|