home *** CD-ROM | disk | FTP | other *** search
/ Beijing Paradise BBS Backup / PARADISE.ISO / software / BBSDOORW / UUPC11XT.ZIP / RN / ACTIVE.H next >
Encoding:
C/C++ Source or Header  |  1992-11-21  |  550 b   |  19 lines

  1.  
  2.  
  3. struct grp {
  4.     struct grp *grp_next;    /* Next group */
  5.     char *grp_name;        /* Group name -- "ba.food" for example */
  6.     long   grp_high;    /* Number for next article to be stored */
  7.     long   grp_low;        /* Lowest numbered article not expired */
  8.     char  grp_can_post;
  9.     };
  10.  
  11. extern struct grp *group_list;    /* List of all groups */
  12.  
  13.  
  14.  
  15.  
  16. void get_active(void);        /* Read in the active newsgroups file */
  17. void put_active(void);        /* Write the active newsgroups file */
  18. void validate_newsgroups(void);    /* Make sure the directory structure exists */
  19.