home *** CD-ROM | disk | FTP | other *** search
/ Source Code 1992 March / Source_Code_CD-ROM_Walnut_Creek_March_1992.iso / usenet / altsrcs / 1 / 1734 / app-resources.h next >
Encoding:
C/C++ Source or Header  |  1990-12-28  |  775 b   |  31 lines

  1. /*
  2.  *    app-resources.h : External definitions for access to the application
  3.  *              resources.
  4.  *
  5.  *    George Ferguson, ferguson@cs.rochester.edu,  4 May 1990.
  6.  *
  7.  *    $Id: app-resources.h,v 1.2 90/08/07 10:01:52 ferguson Exp $
  8.  *
  9.  */
  10. #include <X11/cursorfont.h>
  11.  
  12. #define SMALLFONT "-adobe-courier-medium-r-normal--8-80-75-75-m-50-iso8859-1"
  13. #define FACEDIR "/u/ferguson/lib/images"
  14. #define UPDATECOMMAND "/usr/grads/bin/ru -b0"
  15. #define UPDATECURSOR "watch"
  16.  
  17. typedef struct {
  18.     Boolean addNames;
  19.     Boolean opaqueNames;
  20.     Font smallFont;
  21.     int updateInterval;
  22.     String faceDirectory;
  23.     String updateCommand;
  24.     Cursor updateCursor;
  25.     String nameCommand;
  26.     Boolean debug;
  27.     String revision;
  28.     String widgets;
  29. } AppResources;
  30. extern AppResources appResources;
  31.