11#include <lv2/atom/atom.h>
12#include <lv2/log/log.h>
13#include <lv2/midi/midi.h>
14#include <lv2/patch/patch.h>
15#include <lv2/state/state.h>
17#define EG_FIFTHS_URI "http://lv2plug.in/plugins/eg-fifths"
22 LV2_URID atom_Resource;
23 LV2_URID atom_Sequence;
25 LV2_URID atom_eventTransfer;
28 LV2_URID patch_property;
33map_fifths_uris (LV2_URID_Map * map,
FifthsURIs * uris)
35 uris->atom_Path = map->map (map->handle, LV2_ATOM__Path);
36 uris->atom_Resource = map->map (map->handle, LV2_ATOM__Resource);
37 uris->atom_Sequence = map->map (map->handle, LV2_ATOM__Sequence);
38 uris->atom_URID = map->map (map->handle, LV2_ATOM__URID);
39 uris->atom_eventTransfer = map->map (map->handle, LV2_ATOM__eventTransfer);
40 uris->midi_Event = map->map (map->handle, LV2_MIDI__MidiEvent);
41 uris->patch_Set = map->map (map->handle, LV2_PATCH__Set);
42 uris->patch_property = map->map (map->handle, LV2_PATCH__property);
43 uris->patch_value = map->map (map->handle, LV2_PATCH__value);