aboutsummaryrefslogtreecommitdiffstats
path: root/src/jack.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2022-05-30 20:06:57 -0400
committerDavid Robillard <d@drobilla.net>2022-08-17 13:50:30 -0400
commit15e67e4e4e2333731e8d7a9e70bd95976e512f2c (patch)
tree557082b69559dc5d5743d74a5955c144ba739059 /src/jack.c
parent2920fd5f170179e4e1a880856068d3d8b5f0f420 (diff)
downloadjalv-15e67e4e4e2333731e8d7a9e70bd95976e512f2c.tar.gz
jalv-15e67e4e4e2333731e8d7a9e70bd95976e512f2c.tar.bz2
jalv-15e67e4e4e2333731e8d7a9e70bd95976e512f2c.zip
Reduce dependence on jalv_internal.h
Diffstat (limited to 'src/jack.c')
-rw-r--r--src/jack.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/jack.c b/src/jack.c
index c5cb5f8..2253d5a 100644
--- a/src/jack.c
+++ b/src/jack.c
@@ -12,6 +12,7 @@
#include "nodes.h"
#include "options.h"
#include "port.h"
+#include "types.h"
#include "urids.h"
#include "lilv/lilv.h"
@@ -37,7 +38,7 @@
#include <stdlib.h>
#include <string.h>
-struct JalvBackend {
+struct JalvBackendImpl {
jack_client_t* client; ///< Jack client
bool is_internal_client; ///< Running inside jackd
};