diff options
-rw-r--r-- | src/jack.c | 2 | ||||
-rw-r--r-- | src/jalv.c | 3 | ||||
-rw-r--r-- | src/jalv.h (renamed from src/jalv_internal.h) | 6 | ||||
-rw-r--r-- | src/jalv_console.c | 2 | ||||
-rw-r--r-- | src/jalv_gtk.c | 2 | ||||
-rw-r--r-- | src/jalv_qt.cpp | 2 | ||||
-rw-r--r-- | src/main.c | 2 | ||||
-rw-r--r-- | src/portaudio.c | 2 | ||||
-rw-r--r-- | src/process.c | 2 | ||||
-rw-r--r-- | src/state.c | 2 | ||||
-rw-r--r-- | test/meson.build | 2 |
11 files changed, 14 insertions, 13 deletions
@@ -5,8 +5,8 @@ #include "comm.h" #include "frontend.h" +#include "jalv.h" #include "jalv_config.h" -#include "jalv_internal.h" #include "log.h" #include "lv2_evbuf.h" #include "port.h" @@ -1,13 +1,14 @@ // Copyright 2007-2022 David Robillard <d@drobilla.net> // SPDX-License-Identifier: ISC +#include "jalv.h" + #include "backend.h" #include "comm.h" #include "control.h" #include "dumper.h" #include "frontend.h" #include "jalv_config.h" -#include "jalv_internal.h" #include "log.h" #include "lv2_evbuf.h" #include "macros.h" diff --git a/src/jalv_internal.h b/src/jalv.h index 9ac458e..e4d7d90 100644 --- a/src/jalv_internal.h +++ b/src/jalv.h @@ -1,8 +1,8 @@ // Copyright 2007-2022 David Robillard <d@drobilla.net> // SPDX-License-Identifier: ISC -#ifndef JALV_INTERNAL_H -#define JALV_INTERNAL_H +#ifndef JALV_JALV_H +#define JALV_JALV_H #include "attributes.h" #include "control.h" @@ -139,4 +139,4 @@ jalv_update(Jalv* jalv); JALV_END_DECLS -#endif // JALV_INTERNAL_H +#endif // JALV_JALV_H diff --git a/src/jalv_console.c b/src/jalv_console.c index 7219c87..0ea85b1 100644 --- a/src/jalv_console.c +++ b/src/jalv_console.c @@ -3,8 +3,8 @@ #include "control.h" #include "frontend.h" +#include "jalv.h" #include "jalv_config.h" -#include "jalv_internal.h" #include "log.h" #include "options.h" #include "port.h" diff --git a/src/jalv_gtk.c b/src/jalv_gtk.c index c9672dd..15d43bb 100644 --- a/src/jalv_gtk.c +++ b/src/jalv_gtk.c @@ -3,7 +3,7 @@ #include "control.h" #include "frontend.h" -#include "jalv_internal.h" +#include "jalv.h" #include "log.h" #include "options.h" #include "query.h" diff --git a/src/jalv_qt.cpp b/src/jalv_qt.cpp index a84c089..24b4ce6 100644 --- a/src/jalv_qt.cpp +++ b/src/jalv_qt.cpp @@ -3,7 +3,7 @@ #include "jalv_qt.hpp" #include "frontend.h" -#include "jalv_internal.h" +#include "jalv.h" #include "nodes.h" #include "options.h" #include "port.h" @@ -3,8 +3,8 @@ #include "backend.h" #include "frontend.h" +#include "jalv.h" #include "jalv_config.h" -#include "jalv_internal.h" #include "types.h" #include <zix/attributes.h> diff --git a/src/portaudio.c b/src/portaudio.c index e6f7f70..540e138 100644 --- a/src/portaudio.c +++ b/src/portaudio.c @@ -3,7 +3,7 @@ #include "backend.h" #include "comm.h" -#include "jalv_internal.h" +#include "jalv.h" #include "log.h" #include "lv2_evbuf.h" #include "port.h" diff --git a/src/process.c b/src/process.c index 3598589..2f88316 100644 --- a/src/process.c +++ b/src/process.c @@ -4,7 +4,7 @@ #include "process.h" #include "comm.h" -#include "jalv_internal.h" +#include "jalv.h" #include "log.h" #include "lv2_evbuf.h" #include "port.h" diff --git a/src/state.c b/src/state.c index 327cb1d..b0ba53b 100644 --- a/src/state.c +++ b/src/state.c @@ -4,7 +4,7 @@ #include "state.h" #include "comm.h" -#include "jalv_internal.h" +#include "jalv.h" #include "log.h" #include "mapper.h" #include "port.h" diff --git a/test/meson.build b/test/meson.build index 4a7a09b..5e89d48 100644 --- a/test/meson.build +++ b/test/meson.build @@ -12,10 +12,10 @@ all_sources = ( '../src/control.h', '../src/frontend.h', '../src/jack.c', + '../src/jalv.h', '../src/jalv_config.h', '../src/jalv_console.c', '../src/jalv_gtk.c', - '../src/jalv_internal.h', '../src/jalv_qt.cpp', '../src/jalv_qt.hpp', '../src/log.h', |