diff options
author | David Robillard <d@drobilla.net> | 2015-10-24 18:08:06 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2015-10-24 18:08:06 -0400 |
commit | 295427ca31f17a587d882086b6388dffbb373422 (patch) | |
tree | f8ab403980f77d0e4bb7937f8579968b5df69d4b /plugins/eg-fifths.lv2/uris.h | |
parent | b041b087d18197553a439603cdaf5102a9a73cfa (diff) | |
download | lv2-295427ca31f17a587d882086b6388dffbb373422.tar.xz |
Support all Object types in plugin protocols
Diffstat (limited to 'plugins/eg-fifths.lv2/uris.h')
-rw-r--r-- | plugins/eg-fifths.lv2/uris.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/plugins/eg-fifths.lv2/uris.h b/plugins/eg-fifths.lv2/uris.h index 3e1d400..361334c 100644 --- a/plugins/eg-fifths.lv2/uris.h +++ b/plugins/eg-fifths.lv2/uris.h @@ -25,7 +25,6 @@ #define EG_FIFTHS_URI "http://lv2plug.in/plugins/eg-fifths" typedef struct { - LV2_URID atom_Blank; LV2_URID atom_Path; LV2_URID atom_Resource; LV2_URID atom_Sequence; @@ -40,7 +39,6 @@ typedef struct { static inline void map_fifths_uris(LV2_URID_Map* map, FifthsURIs* uris) { - uris->atom_Blank = map->map(map->handle, LV2_ATOM__Blank); uris->atom_Path = map->map(map->handle, LV2_ATOM__Path); uris->atom_Resource = map->map(map->handle, LV2_ATOM__Resource); uris->atom_Sequence = map->map(map->handle, LV2_ATOM__Sequence); |