aboutsummaryrefslogtreecommitdiffhomepage
path: root/core/config.h
diff options
context:
space:
mode:
authorcbdev <cb@cbcdn.com>2021-07-01 22:34:24 +0200
committercbdev <cb@cbcdn.com>2021-07-01 22:34:24 +0200
commit3b134cc43965c1c196734be7a162da7cddeeafc8 (patch)
treefa900d172d5c75d48b1a811bde70bfa40dca56bd /core/config.h
parent6fab3de48e129e1703f70941f65ae89853e567d5 (diff)
downloadmidimonster-3b134cc43965c1c196734be7a162da7cddeeafc8.tar.gz
midimonster-3b134cc43965c1c196734be7a162da7cddeeafc8.tar.bz2
midimonster-3b134cc43965c1c196734be7a162da7cddeeafc8.zip
Factor out explicit frontend API
Diffstat (limited to 'core/config.h')
-rw-r--r--core/config.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/core/config.h b/core/config.h
index b96a866..80e8fff 100644
--- a/core/config.h
+++ b/core/config.h
@@ -49,6 +49,9 @@ typedef struct /*_mm_config_override*/ {
char* value;
} config_override;
+/* Internal API */
+void config_free();
+
+/* Frontent API */
int config_read(char* file);
int config_add_override(override_type type, char* data);
-void config_free();