aboutsummaryrefslogtreecommitdiffhomepage
path: root/backend.h
diff options
context:
space:
mode:
authorcbdev <cb@cbcdn.com>2017-06-04 18:13:29 +0200
committercbdev <cb@cbcdn.com>2017-06-04 18:13:29 +0200
commit11e9dec049e64989c5f3656415d00c6c69851e8e (patch)
treef087aa41ead18a8b09657fd400bd8b20df80b13f /backend.h
parentbae15293ddc859a1ea426f15e7fa476f71ece020 (diff)
downloadmidimonster-11e9dec049e64989c5f3656415d00c6c69851e8e.tar.gz
midimonster-11e9dec049e64989c5f3656415d00c6c69851e8e.tar.bz2
midimonster-11e9dec049e64989c5f3656415d00c6c69851e8e.zip
Move instance allocator to backend object, introduce backend start function
Diffstat (limited to 'backend.h')
-rw-r--r--backend.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/backend.h b/backend.h
index 5c844a7..65ca97e 100644
--- a/backend.h
+++ b/backend.h
@@ -1,2 +1,5 @@
backend* backend_match(char* name);
+instance* instance_match(char* name);
+int backends_start();
int backends_stop();
+void instances_free();