* Changed the comments at the beginning of each file to a consistent format
[citadel.git] / citadel / serv_upgrade.h
1 /*
2  * $Id$
3  *
4  */
5
6 /*
7  * Format of a usersupp record prior to version 5.55
8  */
9 struct pre555usersupp {                 /* User record                      */
10         int USuid;                      /* userid (==BBSUID for bbs only)   */
11         char password[20];              /* password (for BBS-only users)    */
12         unsigned flags;                 /* See US_ flags below              */
13         int timescalled;                /* Total number of logins           */
14         int posted;                     /* Number of messages posted (ever) */
15         char fullname[26];              /* Name for Citadel messages & mail */
16         char axlevel;                   /* Access level                     */
17         CIT_UBYTE USscreenwidth;        /* Screen width (for textmode users)*/
18         CIT_UBYTE USscreenheight;       /* Screen height(for textmode users)*/
19         long usernum;                   /* User number (never recycled)     */
20         time_t lastcall;                /* Last time the user called        */
21         char USname[30];                /*                                  */
22         char USaddr[25];                /*                                  */
23         char UScity[15];                /*                                  */
24         char USstate[3];                /*                                  */
25         char USzip[10];                 /*                                  */
26         char USphone[11];               /*                                  */
27         char USemail[32];               /*                                  */
28         int USuserpurge;                /* Purge time (in days) for user    */
29 };