home *** CD-ROM | disk | FTP | other *** search
/ ftp.wwiv.com / ftp.wwiv.com.zip / ftp.wwiv.com / pub / BBS / TBZCDR11.ZIP / TRIWHO.H < prev   
Text File  |  1995-06-25  |  526b  |  18 lines

  1. /* TriWho - a structure definition for the TriBBS "whoson" file */
  2. typedef struct {
  3.      char name[31];
  4.      enum { TRI_AVAILABLE = 0,
  5.             TRI_UNAVAILABLE = 1,
  6.             TRI_TRANSFERRING = 2,
  7.             TRI_ENTERING_MESSAGE = 3,
  8.             TRI_IN_DOOR = 4,
  9.             TRI_IN_GROUP_CHAT = 5,
  10.             TRI_WAITING_FOR_NODE = 6,
  11.             TRI_IN_NODE_CHAT = 7
  12.           } chat_status;
  13.      int other_node;
  14.      int highest_message;
  15.      int last_read_message;
  16.      char reserved[89];
  17. } TriWho;
  18.