From 5c48e8a43e13b5b0ce8ee56f4e7b6000a979b37b Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 20 Jan 2008 02:41:04 +0000 Subject: 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 --- src/port.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/port.c') diff --git a/src/port.c b/src/port.c index 851cb38..9925a13 100644 --- a/src/port.c +++ b/src/port.c @@ -114,6 +114,8 @@ slv2_port_get_data_type(SLV2Plugin p, ret = SLV2_PORT_DATA_TYPE_MIDI; else if (!strcmp(uri, "http://drobilla.net/ns/lv2ext/osc/0#OSCPort")) ret = SLV2_PORT_DATA_TYPE_OSC; + else if (!strcmp(uri, "http://lv2plug.in/ns/ext/event#EventPort")) + ret = SLV2_PORT_DATA_TYPE_EVENT; } } -- cgit v1.2.1