forked from github/server
14 lines
237 B
C
14 lines
237 B
C
|
#ifndef BIND_ERESSEA_PROCESS_H
|
||
|
#define BIND_ERESSEA_PROCESS_H
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
const char * settings_get(const char *key);
|
||
|
void settings_set(const char *key, const char *value);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
#endif
|