diff options
Diffstat (limited to 'lv2')
-rw-r--r-- | lv2/uri-map/uri-map.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lv2/uri-map/uri-map.h b/lv2/uri-map/uri-map.h index 12d52be..5974a81 100644 --- a/lv2/uri-map/uri-map.h +++ b/lv2/uri-map/uri-map.h @@ -38,13 +38,18 @@ #include <stdint.h> +#include "lv2/core/attributes.h" + #ifdef __cplusplus extern "C" { #endif +LV2_DISABLE_DEPRECATION_WARNINGS + /** Opaque pointer to host data. */ +LV2_DEPRECATED typedef void* LV2_URI_Map_Callback_Data; /** @@ -54,6 +59,7 @@ typedef void* LV2_URI_Map_Callback_Data; plugin's instantiate method with URI "http://lv2plug.in/ns/ext/uri-map" and data pointed to an instance of this struct. */ +LV2_DEPRECATED typedef struct { /** Opaque pointer to host data. @@ -95,6 +101,8 @@ typedef struct { const char* uri); } LV2_URI_Map_Feature; +LV2_RESTORE_WARNINGS + #ifdef __cplusplus } /* extern "C" */ #endif |