/* WIDE AREA INFORMATION SERVER SOFTWARE:
   No guarantees or restrictions.  See the readme file for the full standard
   disclaimer.

   This is part of the X user-interface for the WAIS software.  Do with it
   as you please.

   Version 0.8
   Fri Feb  1 1991

   jonathan@Think.COM

*/

#ifndef _H_TEXT
#define _H_TEXT

typedef struct textbuff {
  Widget	shell;
  Widget	textwindow;
  Widget	status;
  DocumentID 	docid;
  char *	text;
  char *	type;
  long 		size;
} _Textbuff, *Textbuff;

typedef struct textlist {
  Textbuff thisText;
  struct textlist *nextText;
} _TextList, *TextList;

#endif
