X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=webcit%2Froomops.h;h=50edc6ccf27ac45524fce86428037139097f66a6;hb=e2fdc984d034b949255a49443c0b617cfef7bd88;hp=c569d4e29be02edf08ae9a22901f82d2bcefd677;hpb=fd1e848b9153f7ec34fc15861845cbe4390d952c;p=citadel.git diff --git a/webcit/roomops.h b/webcit/roomops.h index c569d4e29..50edc6ccf 100644 --- a/webcit/roomops.h +++ b/webcit/roomops.h @@ -32,6 +32,7 @@ typedef struct _floor { long ID; StrBuf *Name; long NRooms; + long AlphaN; } floor; /** @@ -54,7 +55,8 @@ struct __ofolder { * \brief Data structure for roomlist-to-folderlist conversion */ typedef struct _folder { - StrBuf *name; /* which is its own name??? */ + /* Data citserver tells us about the room */ + StrBuf *name; /* the full name of the room we're talking about */ int QRFlags; /* roomflags */ int floorid; /* which floor is it on */ @@ -67,8 +69,9 @@ typedef struct _folder { int defview; int lastchange; /* todo... */ - - + /* later evaluated data from the serverdata */ + long nRoomNameParts; + StrBuf **RoomNameParts; const floor *Floor; /* pint to the floor we're on.. */ StrBuf *room; /* which roomname ??? */