home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume23 / trn / part14 / ngdata.h < prev    next >
Encoding:
C/C++ Source or Header  |  1991-08-22  |  1.1 KB  |  47 lines

  1. /* $Header: ngdata.h,v 4.3.3.2 91/01/16 03:18:22 davison Trn $
  2.  *
  3.  * $Log:    ngdata.h,v $
  4.  * Revision 4.3.3.2  91/01/16  03:18:22  davison
  5.  * Added optional prototyping.
  6.  * 
  7.  * Revision 4.3.3.1  90/06/20  22:38:50  davison
  8.  * Initial Trn Release
  9.  * 
  10.  * Revision 4.3.2.1  89/11/06  00:41:21  sob
  11.  * Added RRN support from NNTP 1.5
  12.  * 
  13.  * Revision 4.3  85/05/01  11:44:48  lwall
  14.  * added to local RCS
  15.  * 
  16.  * Revision 4.3  85/05/01  11:44:48  lwall
  17.  * Baseline for release with 4.3bsd.
  18.  * 
  19.  */
  20.  
  21. EXT FILE *actfp INIT(Nullfp);    /* the active file */
  22. EXT bool writesoft INIT(FALSE);    /* rewrite the soft pointer file? */
  23. EXT int softtries INIT(0), softmisses INIT(0);
  24.  
  25. #ifdef SERVER
  26.     EXT char active_name[256];
  27. #endif
  28.  
  29. #ifdef CACHEFIRST
  30.     EXT ART_NUM abs1st[MAXRCLINE];    /* 1st real article in newsgroup */
  31. #else
  32. # ifdef MININACT
  33.     EXT ART_NUM abs1st INIT(0);
  34. # endif
  35. #endif
  36.  
  37. EXT char *moderated;
  38. #ifdef USETHREADS
  39. EXT bool ThreadedGroup;
  40. #endif
  41.  
  42. void    ngdata_init ANSI((void));
  43. ART_NUM    getngsize ANSI((NG_NUM));
  44. ACT_POS findact ANSI((char *,char *,int,long));
  45. ART_NUM    getabsfirst ANSI((NG_NUM,ART_NUM));
  46. ART_NUM    getngmin ANSI((char *,ART_NUM));
  47.