home *** CD-ROM | disk | FTP | other *** search
/ Super Net 1 / SUPERNET_1.iso / PC / OTROS / UNIX / ARCHIE / CLIENTS / XARCHIE0.TAR / appres.h.bug < prev    next >
Encoding:
Text File  |  1991-08-29  |  681 b   |  35 lines

  1. /*
  2.  * appres.h : External defs for files needing the application
  3.  *    resources.
  4.  *
  5.  * George Ferguson, ferguson@cs.rochester.edu, 21 Aug 1991.
  6.  *
  7.  */
  8.  
  9. #ifndef APP_RESOURCES_H
  10. #define APP_RESOURCES_H
  11.  
  12. #include "types.h"        /* for SearchType and SortType */
  13.  
  14. typedef struct {
  15.     String    widgets;
  16.     SearchType    searchType;
  17.     SortType    sortType;
  18. #ifdef DEC_MIPS_BUG
  19.     String    searchTypeStr;
  20.     String    sortTypeStr;
  21. #endif /* DEC_MIPS_BUG */
  22.     String    archieHost;
  23.     int        maxHits;
  24.     int        offset;
  25.     int        timeout;
  26.     int        retries;
  27.     int        niceLevel;
  28.     int        debugLevel;
  29.     String    settingsWidgets;
  30. } AppResources;
  31.  
  32. extern AppResources appResources;
  33.  
  34. #endif /* APP_RESOURCES_H */
  35.