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

  1. /*
  2.  * appres.h : External defs for files needing the application
  3.  *    resources.
  4.  *
  5.  * George Ferguson, ferguson@cs.rochester.edu, 12 Nov 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.     String    menus;
  17.     SearchType    searchType;
  18.     SortType    sortType;
  19.     String    archieHost;
  20.     int        maxHits;
  21.     int        offset;
  22.     int        timeout;
  23.     int        retries;
  24.     int        niceLevel;
  25.     String    ftpDir;
  26.     String    ftpType;
  27.     int        debugLevel;
  28.     String    settingsWidgets;
  29.     Boolean    saveFormatOneLine;
  30.     Boolean    expert;
  31. } AppResources;
  32.  
  33. extern AppResources appResources;
  34.  
  35. #endif /* APP_RESOURCES_H */
  36.