Added SILC Thread Queue API
[crypto.git] / apps / irssi / src / fe-text / statusbar.h
index 0d61c059bad6ade7b67cf22415a53869dc8817c6..148fd02e5a2e4100f92ea00a5fb01b5056190e6e 100644 (file)
@@ -50,7 +50,7 @@ typedef struct {
        char *color; /* background color */
        int real_ypos; /* real Y-position in screen at the moment */
 
-       int dirty:1;
+       unsigned int dirty:1;
         int dirty_xpos; /* -1 = only redraw some items, >= 0 = redraw all items after from xpos */
 } STATUSBAR_REC;
 
@@ -74,7 +74,7 @@ struct SBAR_ITEM_REC {
        int xpos, size;
 
         int current_size; /* item size currently in screen */
-       int dirty:1;
+       unsigned int dirty:1;
 };
 
 extern GSList *statusbar_groups;
@@ -110,6 +110,7 @@ void statusbar_items_redraw(const char *name);
 
 void statusbar_recreate_items(STATUSBAR_REC *bar);
 void statusbars_recreate_items(void);
+void statusbars_create_window_bars(void);
 
 void statusbar_redraw_dirty(void);