home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / games / volume13 / dominion / part05 / news.h < prev   
C/C++ Source or Header  |  1992-02-11  |  1KB  |  40 lines

  1. /* news.h - structures used in the News system */
  2.  
  3. /*
  4.  * Copyright (C) 1990 Free Software Foundation, Inc.
  5.  * Written by the dominion project.
  6.  *
  7.  * This file is part of dominion.
  8.  *
  9.  * dominion is free software; you can redistribute it and/or
  10.  * modify it under the terms of the GNU General Public License as published
  11.  * by the Free Software Foundation; either version 1, or (at your option)
  12.  * any later version.
  13.  *
  14.  * This software is distributed in the hope that it will be useful,
  15.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  * GNU General Public License for more details.
  18.  *
  19.  * You should have received a copy of the GNU General Public License
  20.  * along with this software; see the file COPYING.  If not, write to
  21.  * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  22.  */
  23.  
  24. struct S_Group {
  25.   char name[NAMELEN];   /* The name of the group */
  26.   int  first,last;     /* The numbers of the first and last article numbers */
  27.   char postable;       /* A 'boolean'-Can the players post to the group? */
  28.   struct S_Group *next;
  29. }; 
  30. typedef struct S_Group s_group;
  31.  
  32. struct S_Article {
  33.   int art_num;
  34.   char date[NAMELEN];
  35.   char sender[2*NAMELEN+4];    /* "leader of nation" */
  36.   char subject[EXECLEN];
  37.   int read;   /* Has the article been read? */
  38. };
  39. typedef struct S_Article s_article;
  40.