DataMuseum.dk

Presents historical artifacts from the history of:

DKUUG/EUUG Conference tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about DKUUG/EUUG Conference tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download
Index: T c

⟦4cc0e439c⟧ TextFile

    Length: 615 (0x267)
    Types: TextFile
    Names: »config.c«

Derivation

└─⟦b20c6495f⟧ Bits:30007238 EUUGD18: Wien-båndet, efterår 1987
    └─⟦this⟧ »EUUGD18/General/Pm/BSD/config.c« 

TextFile

/*
** config.c -	installation dependent parameters
**
**	PM_ROLL:	full pathname of score file
**
**	PM_USER:	full pathname of user log file.  used to keep
**			track of who has played
**
**	WIZARD_UID:	if argv[0] == "tester" and getuid() = WIZARD_UID
**			then game runs in diagnostic mode where special
**			commands take effect
**
**	[pm by Peter Costantinidis, Jr. @ University of California at Davis]
*/
char	*pm_roll = PM_ROLL,	/* score file				*/
#ifdef	PM_USER
	*pm_user = PM_USER;	/* user file				*/
#else
	*pm_user = NULL;	/* no user file				*/
#endif
#ifdef	NOFULLPATH
int	wizard_uid = WIZARD_UID;
#endif