home *** CD-ROM | disk | FTP | other *** search
/ Super Net 1 / SUPERNET_1.iso / PC / OTROS / UNIX / ARCHIE / CLIENTS / XARCHIE0.TAR / appres.h < prev    next >
Encoding:
C/C++ Source or Header  |  1991-08-29  |  585 b   |  31 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.     String    archieHost;
  19.     int        maxHits;
  20.     int        offset;
  21.     int        timeout;
  22.     int        retries;
  23.     int        niceLevel;
  24.     int        debugLevel;
  25.     String    settingsWidgets;
  26. } AppResources;
  27.  
  28. extern AppResources appResources;
  29.  
  30. #endif /* APP_RESOURCES_H */
  31.