diff mcabber/src/hbuf.h @ 1290:e42f48103609

Drawing the MUC nicks by a different color (color is hardcoded to red, needs to be changed to something useable)
author Michal 'vorner' Vaner <vorner@ucw.cz>
date Sun, 26 Aug 2007 18:24:14 +0200
parents dbc907b2d92f
children 757ebe4df0b9
line wrap: on
line diff
--- a/mcabber/src/hbuf.h	Mon Aug 27 13:02:16 2007 +0200
+++ b/mcabber/src/hbuf.h	Sun Aug 26 18:24:14 2007 +0200
@@ -31,11 +31,13 @@
 typedef struct {
   time_t timestamp;
   guint flags;
+  unsigned mucnicklen;
   char *text;
 } hbb_line;
 
 void hbuf_add_line(GList **p_hbuf, const char *text, time_t timestamp,
-        guint prefix_flags, guint width, guint maxhbufblocks);
+        guint prefix_flags, guint width, guint maxhbufblocks,
+        unsigned mucnicklen);
 void hbuf_free(GList **p_hbuf);
 void hbuf_rebuild(GList **p_hbuf, unsigned int width);
 GList *hbuf_previous_persistent(GList *l_line);