summaryrefslogtreecommitdiff
path: root/atari/statusbar.h
diff options
context:
space:
mode:
Diffstat (limited to 'atari/statusbar.h')
-rwxr-xr-xatari/statusbar.h12
1 files changed, 8 insertions, 4 deletions
diff --git a/atari/statusbar.h b/atari/statusbar.h
index fd01a0c79..fc6749e91 100755
--- a/atari/statusbar.h
+++ b/atari/statusbar.h
@@ -23,15 +23,19 @@
#define STATUSBAR_MAX_SLEN 255
struct s_statusbar
-{
- COMPONENT * comp;
+{
+#ifdef WITH_COMPONENT_STATUSBAR
+ COMPONENT * comp;
+#endif
char text[STATUSBAR_MAX_SLEN+1];
size_t textlen;
- bool attached;
+ bool attached;
+ short aes_win;
};
CMP_STATUSBAR sb_create( struct gui_window * gw );
void sb_destroy( CMP_STATUSBAR s );
-void sb_set_text( CMP_STATUSBAR sb , char * text );
+void sb_set_text( CMP_STATUSBAR sb , char * text );
+void sb_attach(CMP_STATUSBAR sb, struct gui_window * gw);
#endif