aboutsummaryrefslogtreecommitdiffhomepage
path: root/backends/jack.c
diff options
context:
space:
mode:
authorcbdev <cb@cbcdn.com>2019-12-04 01:21:14 +0100
committercbdev <cb@cbcdn.com>2019-12-04 01:21:14 +0100
commit1107a91861189d28d771d02d721d61b403aac38a (patch)
tree8fb26aa55dcd4aadf645485d91522414e4f21bd5 /backends/jack.c
parentbd9ab579eba35db70ad1ce17d556aeda5866156d (diff)
downloadmidimonster-1107a91861189d28d771d02d721d61b403aac38a.tar.gz
midimonster-1107a91861189d28d771d02d721d61b403aac38a.tar.bz2
midimonster-1107a91861189d28d771d02d721d61b403aac38a.zip
Explicitly mark the backend init symbol visible
Diffstat (limited to 'backends/jack.c')
-rw-r--r--backends/jack.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/backends/jack.c b/backends/jack.c
index b3aacd4..e8a63bc 100644
--- a/backends/jack.c
+++ b/backends/jack.c
@@ -4,6 +4,8 @@
#include <sys/socket.h>
#include <unistd.h>
+#define DEBUG
+
#include "jack.h"
#include <jack/midiport.h>
#include <jack/metadata.h>
@@ -27,7 +29,7 @@ static struct /*_mmjack_backend_cfg*/ {
.jack_shutdown = 0
};
-int init(){
+MM_PLUGIN_API int init(){
backend mmjack = {
.name = BACKEND_NAME,
.conf = mmjack_configure,