* Bump internal version number to 6.08
[citadel.git] / citadel / citserver.h
index 7e2bc7191c6e1af3c538f9bb88c0829d45f56cf9..fc8d014959f8f1c4eb9b711e4a59a0438ae63401 100644 (file)
@@ -2,11 +2,15 @@
 
 #include "serv_extensions.h"
 
-/* Simple linked list structure ... used in a bunch of different places. */
+/* Simple linked list structures ... used in a bunch of different places. */
 struct RoomProcList {
         struct RoomProcList *next;
         char name[ROOMNAMELEN];
 };
+struct UserProcList {
+       struct UserProcList *next;
+       char user[64];
+};
 
 void master_startup (void);
 void master_cleanup (void);