diff options
Diffstat (limited to 'include/lv2/core')
-rw-r--r-- | include/lv2/core/lv2.h | 6 | ||||
-rw-r--r-- | include/lv2/core/lv2_util.h | 2 |
2 files changed, 3 insertions, 5 deletions
diff --git a/include/lv2/core/lv2.h b/include/lv2/core/lv2.h index c70a4c2..6fbb1ec 100644 --- a/include/lv2/core/lv2.h +++ b/include/lv2/core/lv2.h @@ -384,8 +384,7 @@ typedef struct LV2_Descriptor { Note that `index` has no meaning, hosts MUST NOT depend on it remaining consistent between loads of the plugin library. */ -LV2_SYMBOL_EXPORT -const LV2_Descriptor* +LV2_SYMBOL_EXPORT const LV2_Descriptor* lv2_descriptor(uint32_t index); /** @@ -450,8 +449,7 @@ typedef struct { be destroyed (using LV2_Lib_Descriptor::cleanup()) until all plugins loaded from that library have been destroyed. */ -LV2_SYMBOL_EXPORT -const LV2_Lib_Descriptor* +LV2_SYMBOL_EXPORT const LV2_Lib_Descriptor* lv2_lib_descriptor(const char* bundle_path, const LV2_Feature* const* features); /** diff --git a/include/lv2/core/lv2_util.h b/include/lv2/core/lv2_util.h index 2bac3c9..82c5e1e 100644 --- a/include/lv2/core/lv2_util.h +++ b/include/lv2/core/lv2_util.h @@ -10,7 +10,7 @@ @{ */ -#include "lv2/core/lv2.h" +#include <lv2/core/lv2.h> #include <stdarg.h> #include <stdbool.h> |