diff options
author | David Robillard <d@drobilla.net> | 2024-11-18 17:51:58 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2024-11-24 19:10:45 -0500 |
commit | 5bbc72296d650cca75b0344efcae4658a14c9c62 (patch) | |
tree | a1459a4cb6073ecd8b561617d0abccbedad13315 /src/jalv.c | |
parent | f2e20d35eb38098fa5f850e787b3328782cf239a (diff) | |
download | jalv-5bbc72296d650cca75b0344efcae4658a14c9c62.tar.gz jalv-5bbc72296d650cca75b0344efcae4658a14c9c62.tar.bz2 jalv-5bbc72296d650cca75b0344efcae4658a14c9c62.zip |
Rename jalv_internal.h to jalv.h
The "internal" name never made much sense to begin with (since this is a
program, not a library), but now this header only describes the "main" Jalv
struct and functions directly associated with it (the top-level interface of
the application), so name it accordingly.
This also makes include-what-you-use actually check this header, which it
wasn't before for some mysterious reason.
Diffstat (limited to 'src/jalv.c')
-rw-r--r-- | src/jalv.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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" |