home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Usenet 1994 October
/
usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso
/
unix
/
volume4
/
game_reg
/
gr.h
< prev
next >
Wrap
Text File
|
1986-11-30
|
2KB
|
72 lines
/*
* $Header: gr.h,v 1.3 86/03/25 15:50:31 mcooper Exp $
*------------------------------------------------------------------
*
* $Source: /usr/src/local/gr/RCS/gr.h,v $
* $Revision: 1.3 $
* $Date: 86/03/25 15:50:31 $
* $State: Exp $
* $Author: mcooper $
* $Locker: mcooper $
*
*------------------------------------------------------------------
*
* Michael Cooper (mcooper@usc-oberon.arpa)
* University Computing Services,
* University of Southern California,
* Los Angeles, California, 90089-0251
* (213) 743-3469
*
*------------------------------------------------------------------
* $Log: gr.h,v $
* Revision 1.3 86/03/25 15:50:31 mcooper
* Moved CONTROL back to normal place in /usr/games/lib.
*
* Revision 1.2 86/03/25 15:47:57 mcooper
* Lines beginning with '#' are comment lines.
*
* Revision 1.1 86/02/12 17:49:54 mcooper
* Initial revision
*
*------------------------------------------------------------------
*/
/*
* TOD - define if you wish to restrict game playing during a certain
* time of day on weekdays. Use MORNING and EVENING as the time
* period.
*/
/*
#define TOD
*/
#define MORNING 8 /* stop playing games */
#define EVENING 17 /* game time starts */
/*
* HIDEDIR - directory where the actual games are kept.
*/
#define HIDEDIR "/usr/games/.hide"
/*
* NOGAMING - If this file exists, it's contents are printed out and
* gaming is not permitted.
*/
#define NOGAMING "/usr/games/nogames"
/*
* LOGFILE - Define to file name to log entries in.
*/
#define LOGFILE "/usr/games/lib/gr.log"
/*
* CONTROL - Master control file.
*/
#define CONTROL "/usr/games/lib/gr.control"
/*
* Misc. defines - Leave this alone!
*/
#define TRUE 1
#define FALSE 0
#define COMMENT '#'