about summary refs log tree commit diff stats
path: root/src/ui.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui.h')
-rw-r--r--src/ui.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/ui.h b/src/ui.h
index 26bfb480..a11293f0 100644
--- a/src/ui.h
+++ b/src/ui.h
@@ -51,9 +51,18 @@
 #define COLOUR_DND      COLOR_PAIR(11)
 #define COLOUR_XA       COLOR_PAIR(12)
 
+typedef enum {
+    WIN_UNUSED,
+    WIN_CONSOLE,
+    WIN_CHAT,
+    WIN_MUC,
+    WIN_PRIVATE
+} win_type_t;
+
 struct prof_win {
     char from[100];
     WINDOW *win;
+    win_type_t type;
     int y_pos;
     int paged;
     int unread;