aboutsummaryrefslogtreecommitdiffstats
path: root/src/include/uris.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/uris.h')
-rw-r--r--src/include/uris.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/include/uris.h b/src/include/uris.h
index 9797e0e..0c35628 100644
--- a/src/include/uris.h
+++ b/src/include/uris.h
@@ -27,6 +27,7 @@
typedef struct {
LV2_URID atom_URID;
+ LV2_URID lv2_AudioPort;
LV2_URID lv2_CVPort;
LV2_URID lv2_ControlPort;
LV2_URID morph_currentType;
@@ -46,8 +47,9 @@ map_uris(URIs* uris,
if (map) {
uris->atom_URID = map->map(map->handle, LV2_ATOM__URID);
- uris->lv2_ControlPort = map->map(map->handle, LV2_CORE__ControlPort);
+ uris->lv2_AudioPort = map->map(map->handle, LV2_CORE__AudioPort);
uris->lv2_CVPort = map->map(map->handle, LV2_CORE__CVPort);
+ uris->lv2_ControlPort = map->map(map->handle, LV2_CORE__ControlPort);
uris->morph_currentType = map->map(map->handle, LV2_MORPH__currentType);
} else {
memset(uris, 0, sizeof(*uris));