home *** CD-ROM | disk | FTP | other *** search
/ Super Net 1 / SUPERNET_1.iso / PC / OTROS / UNIX / ARCHIE / CLIENTS / XARCHIE1.TAR / appres.h < prev    next >
Encoding:
C/C++ Source or Header  |  1991-09-12  |  624 b   |  33 lines

  1. /*
  2.  * appres.h : External defs for files needing the application
  3.  *    resources.
  4.  *
  5.  * George Ferguson, ferguson@cs.rochester.edu, 12 Sep 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.     String    ftpDir;
  25.     String    ftpType;
  26.     int        debugLevel;
  27.     String    settingsWidgets;
  28. } AppResources;
  29.  
  30. extern AppResources appResources;
  31.  
  32. #endif /* APP_RESOURCES_H */
  33.