MCUME/MCUME_teensy41/teensynofrendo/nofconfig.h

50 wiersze
1001 B
C
Executable File

/* Nofrendo Configuration API
**
** This file is in the public domain.
**
** $Id: nofconfig.h,v 1.1 2001/04/27 14:37:11 neil Exp $
*/
#ifndef _CONFIG_H_
#define _CONFIG_H_
#ifndef CONFIG_FILE
#define CONFIG_FILE "nofrendo.cfg"
#endif
typedef struct config_s
{
char *filename;
} config_t;
extern config_t config;
#endif /* !_CONFIG_H_ */
/*
** $Log: nofconfig.h,v $
** Revision 1.1 2001/04/27 14:37:11 neil
** wheeee
**
** Revision 1.1.1.1 2001/04/27 07:03:54 neil
** initial
**
** Revision 1.5 2000/10/10 13:58:13 matt
** stroustrup squeezing his way in the door
**
** Revision 1.4 2000/07/19 15:58:55 neil
** config file now configurable (ha)
**
** Revision 1.3 2000/07/11 14:59:27 matt
** minor cosmetics.. =)
**
** Revision 1.2 2000/07/11 13:35:38 bsittler
** Changed the config API, implemented config file "nofrendo.cfg". The
** GGI drivers use the group [GGI]. Visual= and Mode= keys are understood.
**
** Revision 1.1 2000/07/11 07:46:11 neil
** Initial commit
**
**
*/