summaryrefslogtreecommitdiffstats
path: root/utils/lv2_inspect.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2008-01-20 02:41:04 +0000
committerDavid Robillard <d@drobilla.net>2008-01-20 02:41:04 +0000
commit5c48e8a43e13b5b0ce8ee56f4e7b6000a979b37b (patch)
treeb8d8286f01336354db4fea37288926fad848bacf /utils/lv2_inspect.c
parent0a8cb65a8205f5a359c57ba4299ce9d9455bf68b (diff)
downloadlilv-5c48e8a43e13b5b0ce8ee56f4e7b6000a979b37b.tar.gz
lilv-5c48e8a43e13b5b0ce8ee56f4e7b6000a979b37b.tar.bz2
lilv-5c48e8a43e13b5b0ce8ee56f4e7b6000a979b37b.zip
Fix syntax error in lv2_midi.ttl and lv2_event.ttl.
Add lv2ev:supportsEvent port property. Add generic event port support to SLV2. git-svn-id: http://svn.drobilla.net/lad/slv2@1081 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'utils/lv2_inspect.c')
-rw-r--r--utils/lv2_inspect.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/utils/lv2_inspect.c b/utils/lv2_inspect.c
index 34213f6..5919201 100644
--- a/utils/lv2_inspect.c
+++ b/utils/lv2_inspect.c
@@ -62,6 +62,9 @@ print_port(SLV2Plugin p, uint32_t index)
case SLV2_PORT_DATA_TYPE_OSC:
printf("OSC");
break;
+ case SLV2_PORT_DATA_TYPE_EVENT:
+ printf("Event");
+ break;
default:
printf("Unknown");
}