home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / unix / volume4 / game_reg / gr.h < prev    next >
Text File  |  1986-11-30  |  2KB  |  72 lines

  1. /*
  2.  * $Header: gr.h,v 1.3 86/03/25 15:50:31 mcooper Exp $
  3.  *------------------------------------------------------------------
  4.  *
  5.  * $Source: /usr/src/local/gr/RCS/gr.h,v $
  6.  * $Revision: 1.3 $
  7.  * $Date: 86/03/25 15:50:31 $
  8.  * $State: Exp $
  9.  * $Author: mcooper $
  10.  * $Locker: mcooper $
  11.  *
  12.  *------------------------------------------------------------------
  13.  *
  14.  * Michael Cooper (mcooper@usc-oberon.arpa)
  15.  * University Computing Services,
  16.  * University of Southern California,
  17.  * Los Angeles, California,   90089-0251
  18.  * (213) 743-3469
  19.  *
  20.  *------------------------------------------------------------------
  21.  * $Log:    gr.h,v $
  22.  * Revision 1.3  86/03/25  15:50:31  mcooper
  23.  * Moved CONTROL back to normal place in /usr/games/lib.
  24.  * 
  25.  * Revision 1.2  86/03/25  15:47:57  mcooper
  26.  * Lines beginning with '#' are comment lines.
  27.  * 
  28.  * Revision 1.1  86/02/12  17:49:54  mcooper
  29.  * Initial revision
  30.  * 
  31.  *------------------------------------------------------------------
  32.  */
  33.  
  34. /*
  35.  * TOD - define if you wish to restrict game playing during a certain
  36.  *     time of day on weekdays.  Use MORNING and EVENING as the time
  37.  *     period.
  38.  */
  39. /*
  40. #define TOD
  41. */
  42. #define MORNING        8            /* stop playing games */
  43. #define EVENING        17            /* game time starts */
  44.  
  45. /*
  46.  * HIDEDIR - directory where the actual games are kept.
  47.  */
  48. #define HIDEDIR        "/usr/games/.hide"
  49.  
  50. /* 
  51.  * NOGAMING - If this file exists, it's contents are printed out and
  52.  *          gaming is not permitted.
  53.  */
  54. #define NOGAMING    "/usr/games/nogames"    
  55.  
  56. /*
  57.  * LOGFILE - Define to file name to log entries in.
  58.  */
  59. #define LOGFILE        "/usr/games/lib/gr.log"
  60.  
  61. /*
  62.  * CONTROL - Master control file.
  63.  */
  64. #define CONTROL        "/usr/games/lib/gr.control"
  65.  
  66. /*
  67.  * Misc. defines - Leave this alone!
  68.  */
  69. #define TRUE        1
  70. #define FALSE        0
  71. #define COMMENT        '#'
  72.