server/core/src/bindings/bind_settings.h
Enno Rehling 89649844f6 core is now part of the server
simplifying git repository structure
2013-05-11 13:02:21 -07:00

13 lines
237 B
C
Executable file

#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