multiprogress.c: Remove pointless return value from `setup_render_state'.
[dvdrip] / multiprogress.h
index 7d8a6e7..f5147c4 100644 (file)
@@ -13,10 +13,12 @@ struct progress_ttyinfo {
     const char *cr, *nw, *up, *ce, *cd;        /*   cursor motion */
     const char *mr, *md, *me;          /*   reverse video, bold */
     const char *af, *ab, *op;          /*   colour */
+    char pc;                           /*   pad character (termcap) */
   } cap;
   unsigned defwd, defht;               /* default width and height */
 };
-#define PROGRESS_TTYINFO_INIT { 0, 0, 0, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } }
+#define PROGRESS_TTYINFO_INIT                                          \
+       { 0,  0, 0,  { 0,  0, 0, 0, 0, 0,  0, 0, 0,  0, 0, 0,  0 },  80, 25 }
 
 struct progress_state {
   struct progress_ttyinfo tty;         /* terminal state */
@@ -34,7 +36,7 @@ struct progress_render_state {
   char *tempbuf; size_t tempsz;                /* scratch buffer */
   size_t leftsz, rightsz;              /* left and right cursors */
   unsigned leftwd, rightwd;            /* left and right widths */
-  char *old_bc, *old_up;               /* old fixup strings */
+  char *old_bc, *old_up, old_pc;       /* saved `termcap' globals */
 };
 
 struct progress_item {
@@ -48,16 +50,15 @@ struct progress_item {
 extern int progress_init(struct progress_state */*progress*/);
 extern void progress_free(struct progress_state */*progress*/);
 
-extern int progress_clear(struct progress_state */*progress*/);
-
-extern int progress_update(struct progress_state */*progress*/);
-
 extern int progress_additem(struct progress_state */*progress*/,
                            struct progress_item */*item*/);
 
 extern int progress_removeitem(struct progress_state */*progress*/,
                               struct progress_item */*item*/);
 
+extern int progress_clear(struct progress_state */*progress*/);
+
+extern int progress_update(struct progress_state */*progress*/);
 
 extern int progress_vputleft(struct progress_render_state */*render*/,
                             const char */*fmt*/, va_list /*ap*/);