home *** CD-ROM | disk | FTP | other *** search
/ Super Net 1 / SUPERNET_1.iso / PC / OTROS / UNIX / ARCHIE / CLIENTS / XARCHIE0.TAR / xarchie.h < prev    next >
Encoding:
C/C++ Source or Header  |  1991-08-21  |  727 b   |  30 lines

  1. /*
  2.  * xarchie.h : Definitions of the X globals and misc. functions
  3.  *
  4.  * George Ferguson, ferguson@cs.rochester.edu, 21 Aug 1991.
  5.  *
  6.  */
  7.  
  8. #ifndef XARCHIE_H
  9. #define XARCHIE_H
  10.  
  11. extern Display *display;
  12. extern Screen *screen;
  13. extern Window root;
  14.  
  15. extern XtAppContext appContext;
  16. extern Widget toplevel;
  17. extern Widget hostList,locationList,fileList;
  18. extern Widget searchText;
  19.  
  20. extern void doPendingEvents();
  21. extern void initWidgetsFromString();
  22. extern void displayHostInfo(), clearHostInfo();
  23. extern void displayLocationInfo(), clearLocationInfo();
  24. extern void displayFileInfo(), clearFileInfo();
  25. extern void setText(), setLabel();
  26. extern void status0(), status1(), status2();
  27. extern void fail0(), fail1();
  28.  
  29. #endif /* XARCHIE_H */
  30.