13 lines
188 B
C
13 lines
188 B
C
typedef struct {
|
|
char *beep;
|
|
char *path[50];
|
|
char *key[50];
|
|
} sounds;
|
|
|
|
void cfginit(void);
|
|
void cfgdestroy(void);
|
|
void cfgreinit(void);
|
|
const char *lookupSounds(char input);
|
|
|
|
|