X-Git-Url: https://code.citadel.org/?p=citadel.git;a=blobdiff_plain;f=webcit%2Froomops.h;h=fd1f60e4ae62686a1bf9606569bc96722cf73097;hp=7d9cd89e3792281e9e51ac22bb9796fa76a276cd;hb=c610deab77612b51cb238f62acc87fb17726cbff;hpb=a2f3fd322eeb4edd5169570a92840d686feecc14 diff --git a/webcit/roomops.h b/webcit/roomops.h index 7d9cd89e3..fd1f60e4a 100644 --- a/webcit/roomops.h +++ b/webcit/roomops.h @@ -1,8 +1,20 @@ +/* + * Copyright (c) 1996-2013 by the citadel.org team + * + * This program is open source software. You can redistribute it and/or + * modify it under the terms of the GNU General Public License, version 3. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + */ + #define VIRTUAL_MY_FLOOR -1 /* - * \brief This struct holds a list of rooms for \\\oto operations. + * This struct holds a list of rooms for "Goto" operations. */ struct march { struct march *next; /* pointer to next in linked list */ @@ -11,9 +23,8 @@ struct march { int march_order; /* sequence in which we are to visit this room */ }; -/* * - * \brief This struct holds a list of rooms for client display. - * It is a binary tree. +/* + * This struct holds a list of rooms for client display. It is a binary tree. */ struct roomlisting { struct roomlisting *lnext; /* pointer to 'left' tree node */ @@ -35,8 +46,8 @@ typedef struct _floor { long AlphaN; } Floor; -/** - * \brief Data structure for roomlist-to-folderlist conversion +/* + * Data structure for roomlist-to-folderlist conversion */ struct __ofolder { int floor; /* which floor is it on */ @@ -51,8 +62,8 @@ struct __ofolder { -/** - * \brief Data structure for roomlist-to-folderlist conversion +/* + * Data structure for roomlist-to-folderlist conversion */ typedef struct _folder { /* Data citserver tells us about the room */ @@ -108,7 +119,7 @@ typedef struct _folder { int BumpUsers; /* if SETR set to 1 to make all users who knew this room to forget about it. */ HashList *IgnetCfgs[maxRoomNetCfg + 1]; -}folder; +} folder; HashList *GetFloorListHash(StrBuf *Target, WCTemplputParams *TP); void vDeleteFolder(void *vFolder);