diff options
author | David Robillard <d@drobilla.net> | 2023-09-23 20:06:41 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2023-09-23 20:06:41 -0400 |
commit | 46636920700f61dc8c02bc76bc37df304dfae08d (patch) | |
tree | 856ad67be39779b3fa1d365345a70aada98d4cf5 /include/lv2 | |
parent | 31a8dbcca82a394f0dd236776692a8a53a031777 (diff) | |
download | lv2-46636920700f61dc8c02bc76bc37df304dfae08d.tar.xz |
Add missing symbol exports for dynmanifest API
Diffstat (limited to 'include/lv2')
-rw-r--r-- | include/lv2/dynmanifest/dynmanifest.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/lv2/dynmanifest/dynmanifest.h b/include/lv2/dynmanifest/dynmanifest.h index 740c0a4..b1a273c 100644 --- a/include/lv2/dynmanifest/dynmanifest.h +++ b/include/lv2/dynmanifest/dynmanifest.h @@ -56,6 +56,7 @@ typedef void* LV2_Dyn_Manifest_Handle; evaluate the result of the operation by examining the returned value and MUST NOT try to interpret the value of handle. */ +LV2_SYMBOL_EXPORT int lv2_dyn_manifest_open(LV2_Dyn_Manifest_Handle* handle, const LV2_Feature* const* features); @@ -83,6 +84,7 @@ lv2_dyn_manifest_open(LV2_Dyn_Manifest_Handle* handle, @return 0 on success, otherwise a non-zero error code. */ +LV2_SYMBOL_EXPORT int lv2_dyn_manifest_get_subjects(LV2_Dyn_Manifest_Handle handle, FILE* fp); @@ -116,6 +118,7 @@ lv2_dyn_manifest_get_subjects(LV2_Dyn_Manifest_Handle handle, FILE* fp); @return 0 on success, otherwise a non-zero error code. */ +LV2_SYMBOL_EXPORT int lv2_dyn_manifest_get_data(LV2_Dyn_Manifest_Handle handle, FILE* fp, @@ -132,6 +135,7 @@ lv2_dyn_manifest_get_data(LV2_Dyn_Manifest_Handle handle, @param handle Dynamic manifest generator handle. */ +LV2_SYMBOL_EXPORT void lv2_dyn_manifest_close(LV2_Dyn_Manifest_Handle handle); |