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