aboutsummaryrefslogtreecommitdiffstats
path: root/lv2
diff options
context:
space:
mode:
Diffstat (limited to 'lv2')
-rw-r--r--lv2/atom/atom.h14
-rw-r--r--lv2/atom/forge.h16
-rw-r--r--lv2/atom/util.h14
-rw-r--r--lv2/core/lv2.h12
-rw-r--r--lv2/data-access/data-access.h10
-rw-r--r--lv2/dynmanifest/dynmanifest.h12
-rw-r--r--lv2/event/event-helpers.h6
-rw-r--r--lv2/event/event.h10
-rw-r--r--lv2/instance-access/instance-access.h10
-rw-r--r--lv2/log/log.h10
-rw-r--r--lv2/log/logger.h10
-rw-r--r--lv2/midi/midi.h10
-rw-r--r--lv2/morph/morph.h10
-rw-r--r--lv2/options/options.h10
-rw-r--r--lv2/parameters/parameters.h10
-rw-r--r--lv2/patch/patch.h10
-rw-r--r--lv2/port-groups/port-groups.h10
-rw-r--r--lv2/port-props/port-props.h10
-rw-r--r--lv2/presets/presets.h10
-rw-r--r--lv2/resize-port/resize-port.h10
-rw-r--r--lv2/state/state.h10
-rw-r--r--lv2/time/time.h6
-rw-r--r--lv2/ui/ui.h10
-rw-r--r--lv2/units/units.h10
-rw-r--r--lv2/uri-map/uri-map.h10
-rw-r--r--lv2/urid/urid.h10
-rw-r--r--lv2/worker/worker.h10
27 files changed, 140 insertions, 140 deletions
diff --git a/lv2/atom/atom.h b/lv2/atom/atom.h
index 2f62947..a82c977 100644
--- a/lv2/atom/atom.h
+++ b/lv2/atom/atom.h
@@ -14,6 +14,9 @@
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
+#ifndef LV2_ATOM_H
+#define LV2_ATOM_H
+
/**
@defgroup atom Atom
@ingroup lv2
@@ -25,9 +28,6 @@
@{
*/
-#ifndef LV2_ATOM_H
-#define LV2_ATOM_H
-
#include <stdint.h>
// clang-format off
@@ -250,12 +250,12 @@ typedef struct {
LV2_Atom_Sequence_Body body; /**< Body. */
} LV2_Atom_Sequence;
-/**
- @}
-*/
-
#ifdef __cplusplus
} /* extern "C" */
#endif
+/**
+ @}
+*/
+
#endif /* LV2_ATOM_H */
diff --git a/lv2/atom/forge.h b/lv2/atom/forge.h
index b87d12f..0920e0a 100644
--- a/lv2/atom/forge.h
+++ b/lv2/atom/forge.h
@@ -39,6 +39,9 @@
This header is non-normative, it is provided for convenience.
*/
+#ifndef LV2_ATOM_FORGE_H
+#define LV2_ATOM_FORGE_H
+
/**
@defgroup forge Forge
@ingroup atom
@@ -48,9 +51,6 @@
@{
*/
-#ifndef LV2_ATOM_FORGE_H
-#define LV2_ATOM_FORGE_H
-
#include "lv2/atom/atom.h"
#include "lv2/atom/util.h"
#include "lv2/core/attributes.h"
@@ -687,15 +687,15 @@ lv2_atom_forge_beat_time(LV2_Atom_Forge* forge, double beats)
return lv2_atom_forge_write(forge, &beats, sizeof(beats));
}
-/**
- @}
- @}
-*/
-
LV2_RESTORE_WARNINGS
#ifdef __cplusplus
} /* extern "C" */
#endif
+/**
+ @}
+ @}
+*/
+
#endif /* LV2_ATOM_FORGE_H */
diff --git a/lv2/atom/util.h b/lv2/atom/util.h
index bfad422..98c9edb 100644
--- a/lv2/atom/util.h
+++ b/lv2/atom/util.h
@@ -14,6 +14,9 @@
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
+#ifndef LV2_ATOM_UTIL_H
+#define LV2_ATOM_UTIL_H
+
/**
@file util.h Helper functions for the LV2 Atom extension.
@@ -31,9 +34,6 @@
@{
*/
-#ifndef LV2_ATOM_UTIL_H
-#define LV2_ATOM_UTIL_H
-
#include "lv2/atom/atom.h"
#include <stdarg.h>
@@ -512,13 +512,13 @@ lv2_atom_object_get_typed(const LV2_Atom_Object* object, ...)
return matches;
}
+#ifdef __cplusplus
+} /* extern "C" */
+#endif
+
/**
@}
@}
*/
-#ifdef __cplusplus
-} /* extern "C" */
-#endif
-
#endif /* LV2_ATOM_UTIL_H */
diff --git a/lv2/core/lv2.h b/lv2/core/lv2.h
index 754b07a..c0376e9 100644
--- a/lv2/core/lv2.h
+++ b/lv2/core/lv2.h
@@ -18,6 +18,9 @@
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
+#ifndef LV2_H_INCLUDED
+#define LV2_H_INCLUDED
+
/**
@defgroup lv2 LV2
@@ -36,9 +39,6 @@
@{
*/
-#ifndef LV2_H_INCLUDED
-#define LV2_H_INCLUDED
-
#include <stdint.h>
// clang-format off
@@ -477,12 +477,12 @@ typedef const LV2_Lib_Descriptor *
const LV2_Feature *const * features);
#ifdef __cplusplus
-}
+} /* extern "C" */
#endif
-#endif /* LV2_H_INCLUDED */
-
/**
@}
@}
*/
+
+#endif /* LV2_H_INCLUDED */
diff --git a/lv2/data-access/data-access.h b/lv2/data-access/data-access.h
index 90ba2ff..fb930ec 100644
--- a/lv2/data-access/data-access.h
+++ b/lv2/data-access/data-access.h
@@ -15,6 +15,9 @@
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
+#ifndef LV2_DATA_ACCESS_H
+#define LV2_DATA_ACCESS_H
+
/**
@defgroup data-access Data Access
@ingroup lv2
@@ -26,9 +29,6 @@
@{
*/
-#ifndef LV2_DATA_ACCESS_H
-#define LV2_DATA_ACCESS_H
-
// clang-format off
#define LV2_DATA_ACCESS_URI "http://lv2plug.in/ns/ext/data-access" ///< http://lv2plug.in/ns/ext/data-access
@@ -67,8 +67,8 @@ typedef struct {
} /* extern "C" */
#endif
-#endif /* LV2_DATA_ACCESS_H */
-
/**
@}
*/
+
+#endif /* LV2_DATA_ACCESS_H */
diff --git a/lv2/dynmanifest/dynmanifest.h b/lv2/dynmanifest/dynmanifest.h
index 5522039..36d7ebb 100644
--- a/lv2/dynmanifest/dynmanifest.h
+++ b/lv2/dynmanifest/dynmanifest.h
@@ -15,6 +15,9 @@
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
+#ifndef LV2_DYN_MANIFEST_H_INCLUDED
+#define LV2_DYN_MANIFEST_H_INCLUDED
+
/**
@defgroup dynmanifest Dynamic Manifest
@ingroup lv2
@@ -26,9 +29,6 @@
@{
*/
-#ifndef LV2_DYN_MANIFEST_H_INCLUDED
-#define LV2_DYN_MANIFEST_H_INCLUDED
-
#include "lv2/core/lv2.h"
#include <stdio.h>
@@ -147,11 +147,11 @@ int lv2_dyn_manifest_get_data(LV2_Dyn_Manifest_Handle handle,
void lv2_dyn_manifest_close(LV2_Dyn_Manifest_Handle handle);
#ifdef __cplusplus
-}
+} /* extern "C" */
#endif
-#endif /* LV2_DYN_MANIFEST_H_INCLUDED */
-
/**
@}
*/
+
+#endif /* LV2_DYN_MANIFEST_H_INCLUDED */
diff --git a/lv2/event/event-helpers.h b/lv2/event/event-helpers.h
index ca3abec..6b39235 100644
--- a/lv2/event/event-helpers.h
+++ b/lv2/event/event-helpers.h
@@ -14,14 +14,14 @@
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
+#ifndef LV2_EVENT_HELPERS_H
+#define LV2_EVENT_HELPERS_H
+
/**
@file event-helpers.h Helper functions for the LV2 Event extension
<http://lv2plug.in/ns/ext/event>.
*/
-#ifndef LV2_EVENT_HELPERS_H
-#define LV2_EVENT_HELPERS_H
-
#include "lv2/core/attributes.h"
#include "lv2/event/event.h"
diff --git a/lv2/event/event.h b/lv2/event/event.h
index 9a7fec4..ff91e3b 100644
--- a/lv2/event/event.h
+++ b/lv2/event/event.h
@@ -15,6 +15,9 @@
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
+#ifndef LV2_EVENT_H
+#define LV2_EVENT_H
+
/**
@defgroup event Event
@ingroup lv2
@@ -26,9 +29,6 @@
@{
*/
-#ifndef LV2_EVENT_H
-#define LV2_EVENT_H
-
// clang-format off
#define LV2_EVENT_URI "http://lv2plug.in/ns/ext/event" ///< http://lv2plug.in/ns/ext/event
@@ -302,8 +302,8 @@ LV2_RESTORE_WARNINGS
} /* extern "C" */
#endif
-#endif /* LV2_EVENT_H */
-
/**
@}
*/
+
+#endif /* LV2_EVENT_H */
diff --git a/lv2/instance-access/instance-access.h b/lv2/instance-access/instance-access.h
index f32dc3d..4070fc0 100644
--- a/lv2/instance-access/instance-access.h
+++ b/lv2/instance-access/instance-access.h
@@ -15,6 +15,9 @@
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
+#ifndef LV2_INSTANCE_ACCESS_H
+#define LV2_INSTANCE_ACCESS_H
+
/**
@defgroup instance-access Instance Access
@ingroup lv2
@@ -26,17 +29,14 @@
@{
*/
-#ifndef LV2_INSTANCE_ACCESS_H
-#define LV2_INSTANCE_ACCESS_H
-
// clang-format off
#define LV2_INSTANCE_ACCESS_URI "http://lv2plug.in/ns/ext/instance-access" ///< http://lv2plug.in/ns/ext/instance-access
// clang-format on
-#endif /* LV2_INSTANCE_ACCESS_H */
-
/**
@}
*/
+
+#endif /* LV2_INSTANCE_ACCESS_H */
diff --git a/lv2/log/log.h b/lv2/log/log.h
index de940d9..cf938ca 100644
--- a/lv2/log/log.h
+++ b/lv2/log/log.h
@@ -14,6 +14,9 @@
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
+#ifndef LV2_LOG_H
+#define LV2_LOG_H
+
/**
@defgroup log Log
@ingroup lv2
@@ -25,9 +28,6 @@
@{
*/
-#ifndef LV2_LOG_H
-#define LV2_LOG_H
-
// clang-format off
#define LV2_LOG_URI "http://lv2plug.in/ns/ext/log" ///< http://lv2plug.in/ns/ext/log
@@ -108,8 +108,8 @@ typedef struct {
} /* extern "C" */
#endif
-#endif /* LV2_LOG_H */
-
/**
@}
*/
+
+#endif /* LV2_LOG_H */
diff --git a/lv2/log/logger.h b/lv2/log/logger.h
index 6e89ac8..669069c 100644
--- a/lv2/log/logger.h
+++ b/lv2/log/logger.h
@@ -14,6 +14,9 @@
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
+#ifndef LV2_ATOM_LOGGER_H
+#define LV2_ATOM_LOGGER_H
+
/**
@defgroup logger Logger
@ingroup log
@@ -25,9 +28,6 @@
@{
*/
-#ifndef LV2_ATOM_LOGGER_H
-#define LV2_ATOM_LOGGER_H
-
#include "lv2/log/log.h"
#include "lv2/urid/urid.h"
@@ -152,8 +152,8 @@ lv2_log_warning(LV2_Log_Logger* logger, const char* fmt, ...)
} /* extern "C" */
#endif
-#endif /* LV2_LOG_LOGGER_H */
-
/**
@}
*/
+
+#endif /* LV2_LOG_LOGGER_H */
diff --git a/lv2/midi/midi.h b/lv2/midi/midi.h
index e41aab8..6f70377 100644
--- a/lv2/midi/midi.h
+++ b/lv2/midi/midi.h
@@ -14,6 +14,9 @@
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
+#ifndef LV2_MIDI_H
+#define LV2_MIDI_H
+
/**
@defgroup midi MIDI
@ingroup lv2
@@ -25,9 +28,6 @@
@{
*/
-#ifndef LV2_MIDI_H
-#define LV2_MIDI_H
-
#include <stdbool.h>
#include <stdint.h>
@@ -234,8 +234,8 @@ lv2_midi_message_type(const uint8_t* msg) {
} /* extern "C" */
#endif
-#endif /* LV2_MIDI_H */
-
/**
@}
*/
+
+#endif /* LV2_MIDI_H */
diff --git a/lv2/morph/morph.h b/lv2/morph/morph.h
index eab8c2e..8b096e0 100644
--- a/lv2/morph/morph.h
+++ b/lv2/morph/morph.h
@@ -14,6 +14,9 @@
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
+#ifndef LV2_MORPH_H
+#define LV2_MORPH_H
+
/**
@defgroup morph Morph
@ingroup lv2
@@ -25,9 +28,6 @@
@{
*/
-#ifndef LV2_MORPH_H
-#define LV2_MORPH_H
-
// clang-format off
#define LV2_MORPH_URI "http://lv2plug.in/ns/ext/morph" ///< http://lv2plug.in/ns/ext/morph
@@ -41,8 +41,8 @@
// clang-format on
-#endif /* LV2_MORPH_H */
-
/**
@}
*/
+
+#endif /* LV2_MORPH_H */
diff --git a/lv2/options/options.h b/lv2/options/options.h
index 7b43bd1..b0f8274 100644
--- a/lv2/options/options.h
+++ b/lv2/options/options.h
@@ -14,6 +14,9 @@
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
+#ifndef LV2_OPTIONS_H
+#define LV2_OPTIONS_H
+
/**
@defgroup options Options
@ingroup lv2
@@ -25,9 +28,6 @@
@{
*/
-#ifndef LV2_OPTIONS_H
-#define LV2_OPTIONS_H
-
#include "lv2/core/lv2.h"
#include "lv2/urid/urid.h"
@@ -144,8 +144,8 @@ typedef struct {
} /* extern "C" */
#endif
-#endif /* LV2_OPTIONS_H */
-
/**
@}
*/
+
+#endif /* LV2_OPTIONS_H */
diff --git a/lv2/parameters/parameters.h b/lv2/parameters/parameters.h
index b8a40d0..49a3364 100644
--- a/lv2/parameters/parameters.h
+++ b/lv2/parameters/parameters.h
@@ -14,6 +14,9 @@
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
+#ifndef LV2_PARAMETERS_H
+#define LV2_PARAMETERS_H
+
/**
@defgroup parameters Parameters
@ingroup lv2
@@ -25,9 +28,6 @@
@{
*/
-#ifndef LV2_PARAMETERS_H
-#define LV2_PARAMETERS_H
-
// clang-format off
#define LV2_PARAMETERS_URI "http://lv2plug.in/ns/ext/parameters" ///< http://lv2plug.in/ns/ext/parameters
@@ -61,8 +61,8 @@
// clang-format on
-#endif /* LV2_PARAMETERS_H */
-
/**
@}
*/
+
+#endif /* LV2_PARAMETERS_H */
diff --git a/lv2/patch/patch.h b/lv2/patch/patch.h
index 6900a7d..a68b0bb 100644
--- a/lv2/patch/patch.h
+++ b/lv2/patch/patch.h
@@ -14,6 +14,9 @@
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
+#ifndef LV2_PATCH_H
+#define LV2_PATCH_H
+
/**
@defgroup patch Patch
@ingroup lv2
@@ -28,9 +31,6 @@
@{
*/
-#ifndef LV2_PATCH_H
-#define LV2_PATCH_H
-
// clang-format off
#define LV2_PATCH_URI "http://lv2plug.in/ns/ext/patch" ///< http://lv2plug.in/ns/ext/patch
@@ -66,8 +66,8 @@
// clang-format on
-#endif /* LV2_PATCH_H */
-
/**
@}
*/
+
+#endif /* LV2_PATCH_H */
diff --git a/lv2/port-groups/port-groups.h b/lv2/port-groups/port-groups.h
index 3f4c5b9..0dd3c0d 100644
--- a/lv2/port-groups/port-groups.h
+++ b/lv2/port-groups/port-groups.h
@@ -14,6 +14,9 @@
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
+#ifndef LV2_PORT_GROUPS_H
+#define LV2_PORT_GROUPS_H
+
/**
@defgroup port-groups Port Groups
@ingroup lv2
@@ -25,9 +28,6 @@
@{
*/
-#ifndef LV2_PORT_GROUPS_H
-#define LV2_PORT_GROUPS_H
-
// clang-format off
#define LV2_PORT_GROUPS_URI "http://lv2plug.in/ns/ext/port-groups" ///< http://lv2plug.in/ns/ext/port-groups
@@ -70,8 +70,8 @@
// clang-format on
-#endif /* LV2_PORT_GROUPS_H */
-
/**
@}
*/
+
+#endif /* LV2_PORT_GROUPS_H */
diff --git a/lv2/port-props/port-props.h b/lv2/port-props/port-props.h
index e5a5394..a413d54 100644
--- a/lv2/port-props/port-props.h
+++ b/lv2/port-props/port-props.h
@@ -14,6 +14,9 @@
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
+#ifndef LV2_PORT_PROPS_H
+#define LV2_PORT_PROPS_H
+
/**
@defgroup port-props Port Properties
@ingroup lv2
@@ -23,9 +26,6 @@
@{
*/
-#ifndef LV2_PORT_PROPS_H
-#define LV2_PORT_PROPS_H
-
// clang-format off
#define LV2_PORT_PROPS_URI "http://lv2plug.in/ns/ext/port-props" ///< http://lv2plug.in/ns/ext/port-props
@@ -46,8 +46,8 @@
// clang-format on
-#endif /* LV2_PORT_PROPS_H */
-
/**
@}
*/
+
+#endif /* LV2_PORT_PROPS_H */
diff --git a/lv2/presets/presets.h b/lv2/presets/presets.h
index 40c1892..d09b71f 100644
--- a/lv2/presets/presets.h
+++ b/lv2/presets/presets.h
@@ -14,6 +14,9 @@
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
+#ifndef LV2_PRESETS_H
+#define LV2_PRESETS_H
+
/**
@defgroup presets Presets
@ingroup lv2
@@ -25,9 +28,6 @@
@{
*/
-#ifndef LV2_PRESETS_H
-#define LV2_PRESETS_H
-
// clang-format off
#define LV2_PRESETS_URI "http://lv2plug.in/ns/ext/presets" ///< http://lv2plug.in/ns/ext/presets
@@ -41,8 +41,8 @@
// clang-format on
-#endif /* LV2_PRESETS_H */
-
/**
@}
*/
+
+#endif /* LV2_PRESETS_H */
diff --git a/lv2/resize-port/resize-port.h b/lv2/resize-port/resize-port.h
index 9c7a0d8..068001c 100644
--- a/lv2/resize-port/resize-port.h
+++ b/lv2/resize-port/resize-port.h
@@ -14,6 +14,9 @@
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
+#ifndef LV2_RESIZE_PORT_H
+#define LV2_RESIZE_PORT_H
+
/**
@defgroup resize-port Resize Port
@ingroup lv2
@@ -23,9 +26,6 @@
@{
*/
-#ifndef LV2_RESIZE_PORT_H
-#define LV2_RESIZE_PORT_H
-
#include <stddef.h>
#include <stdint.h>
@@ -82,8 +82,8 @@ typedef struct {
} /* extern "C" */
#endif
-#endif /* LV2_RESIZE_PORT_H */
-
/**
@}
*/
+
+#endif /* LV2_RESIZE_PORT_H */
diff --git a/lv2/state/state.h b/lv2/state/state.h
index 9430f63..0de3ee4 100644
--- a/lv2/state/state.h
+++ b/lv2/state/state.h
@@ -15,6 +15,9 @@
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
+#ifndef LV2_STATE_H
+#define LV2_STATE_H
+
/**
@defgroup state State
@ingroup lv2
@@ -26,9 +29,6 @@
@{
*/
-#ifndef LV2_STATE_H
-#define LV2_STATE_H
-
#include "lv2/core/lv2.h"
#include <stddef.h>
@@ -386,8 +386,8 @@ typedef struct {
} /* extern "C" */
#endif
-#endif /* LV2_STATE_H */
-
/**
@}
*/
+
+#endif /* LV2_STATE_H */
diff --git a/lv2/time/time.h b/lv2/time/time.h
index 4615056..10337ae 100644
--- a/lv2/time/time.h
+++ b/lv2/time/time.h
@@ -14,6 +14,9 @@
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
+#ifndef LV2_TIME_H
+#define LV2_TIME_H
+
/**
@defgroup time Time
@ingroup lv2
@@ -28,9 +31,6 @@
@{
*/
-#ifndef LV2_TIME_H
-#define LV2_TIME_H
-
// clang-format off
#define LV2_TIME_URI "http://lv2plug.in/ns/ext/time" ///< http://lv2plug.in/ns/ext/time
diff --git a/lv2/ui/ui.h b/lv2/ui/ui.h
index ddc7f9d..ee3c47d 100644
--- a/lv2/ui/ui.h
+++ b/lv2/ui/ui.h
@@ -16,6 +16,9 @@
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
+#ifndef LV2_UI_H
+#define LV2_UI_H
+
/**
@defgroup ui User Interfaces
@ingroup lv2
@@ -27,9 +30,6 @@
@{
*/
-#ifndef LV2_UI_H
-#define LV2_UI_H
-
#include "lv2/core/lv2.h"
#include "lv2/urid/urid.h"
@@ -537,8 +537,8 @@ typedef const LV2UI_Descriptor* (*LV2UI_DescriptorFunction)(uint32_t index);
}
#endif
-#endif /* LV2_UI_H */
-
/**
@}
*/
+
+#endif /* LV2_UI_H */
diff --git a/lv2/units/units.h b/lv2/units/units.h
index b495313..07db081 100644
--- a/lv2/units/units.h
+++ b/lv2/units/units.h
@@ -14,6 +14,9 @@
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
+#ifndef LV2_UNITS_H
+#define LV2_UNITS_H
+
/**
@defgroup units Units
@ingroup lv2
@@ -25,9 +28,6 @@
@{
*/
-#ifndef LV2_UNITS_H
-#define LV2_UNITS_H
-
// clang-format off
#define LV2_UNITS_URI "http://lv2plug.in/ns/extensions/units" ///< http://lv2plug.in/ns/extensions/units
@@ -68,8 +68,8 @@
// clang-format on
-#endif /* LV2_UNITS_H */
-
/**
@}
*/
+
+#endif /* LV2_UNITS_H */
diff --git a/lv2/uri-map/uri-map.h b/lv2/uri-map/uri-map.h
index d6d1122..31e485a 100644
--- a/lv2/uri-map/uri-map.h
+++ b/lv2/uri-map/uri-map.h
@@ -14,6 +14,9 @@
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
+#ifndef LV2_URI_MAP_H
+#define LV2_URI_MAP_H
+
/**
@defgroup uri-map URI Map
@ingroup lv2
@@ -33,9 +36,6 @@
@{
*/
-#ifndef LV2_URI_MAP_H
-#define LV2_URI_MAP_H
-
// clang-format off
#define LV2_URI_MAP_URI "http://lv2plug.in/ns/ext/uri-map" ///< http://lv2plug.in/ns/ext/uri-map
@@ -114,8 +114,8 @@ LV2_RESTORE_WARNINGS
} /* extern "C" */
#endif
-#endif /* LV2_URI_MAP_H */
-
/**
@}
*/
+
+#endif /* LV2_URI_MAP_H */
diff --git a/lv2/urid/urid.h b/lv2/urid/urid.h
index 6655176..60aeffb 100644
--- a/lv2/urid/urid.h
+++ b/lv2/urid/urid.h
@@ -15,6 +15,9 @@
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
+#ifndef LV2_URID_H
+#define LV2_URID_H
+
/**
@defgroup urid URID
@ingroup lv2
@@ -26,9 +29,6 @@
@{
*/
-#ifndef LV2_URID_H
-#define LV2_URID_H
-
// clang-format off
#define LV2_URID_URI "http://lv2plug.in/ns/ext/urid" ///< http://lv2plug.in/ns/ext/urid
@@ -135,8 +135,8 @@ typedef struct {
} /* extern "C" */
#endif
-#endif /* LV2_URID_H */
-
/**
@}
*/
+
+#endif /* LV2_URID_H */
diff --git a/lv2/worker/worker.h b/lv2/worker/worker.h
index 52bc259..d9b1051 100644
--- a/lv2/worker/worker.h
+++ b/lv2/worker/worker.h
@@ -14,6 +14,9 @@
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
+#ifndef LV2_WORKER_H
+#define LV2_WORKER_H
+
/**
@defgroup worker Worker
@ingroup lv2
@@ -25,9 +28,6 @@
@{
*/
-#ifndef LV2_WORKER_H
-#define LV2_WORKER_H
-
#include "lv2/core/lv2.h"
#include <stdint.h>
@@ -176,8 +176,8 @@ typedef struct {
} /* extern "C" */
#endif
-#endif /* LV2_WORKER_H */
-
/**
@}
*/
+
+#endif /* LV2_WORKER_H */
ef='#n1601'>1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443