diff options
Diffstat (limited to 'src/gui/gui.h')
-rw-r--r-- | src/gui/gui.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/gui/gui.h b/src/gui/gui.h index e14a0140..dfa89bd7 100644 --- a/src/gui/gui.h +++ b/src/gui/gui.h @@ -24,7 +24,7 @@ #ifdef WIN32 #pragma warning (disable:4312) #endif - +#include "login.h" #ifndef _TMW_GUI #define _TMW_GUI @@ -83,6 +83,9 @@ typedef struct { LexSkinnedRect bg; } LexBar; +typedef struct { + LexSkinnedRect bg; +} LexPlus; typedef struct { LexButton button; @@ -93,6 +96,7 @@ typedef struct { LexListbox listbox; LexDialog dialog; LexBar bar; + LexPlus plus; } LexSkin; extern LexSkin gui_skin; @@ -122,6 +126,7 @@ int tmw_ldialog_proc(int msg, DIALOG *d, int c); int tmw_textbox_proc(int msg, DIALOG *d, int c); int tmw_bitmap_proc(int msg, DIALOG *d, int c); int tmw_bar_proc(int msg, DIALOG *d, int c); +int tmw_plus_proc(int msg, DIALOG *d, int c); void ok(const char *title, const char *message); unsigned int yes_no(const char *title, const char *message); |