Rage video and audio player
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#ifndef _CONFIG_H__ |
|
#define _CONFIG_H__ 1 |
|
|
|
typedef struct _Config Config; |
|
|
|
struct _Config |
|
{ |
|
const char *emotion_engine; |
|
}; |
|
|
|
void config_init(void); |
|
void config_shutdown(void); |
|
Config *config_get(void); |
|
void config_save(void); |
|
|
|
#endif
|
|
|