diff options
author | David Robillard <d@drobilla.net> | 2008-02-01 03:42:02 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2008-02-01 03:42:02 +0000 |
commit | a06c7eeef68cfe87589f557570f812da4391de96 (patch) | |
tree | 39d622cef75b668721d3144c8ded8b8cf033a17c /slv2 | |
parent | 8c4e3d5e615e24561d183d13ee7d837fcca3c396 (diff) | |
download | lilv-a06c7eeef68cfe87589f557570f812da4391de96.tar.gz lilv-a06c7eeef68cfe87589f557570f812da4391de96.tar.bz2 lilv-a06c7eeef68cfe87589f557570f812da4391de96.zip |
Generic LV2 event support in lv2_jack_host.
git-svn-id: http://svn.drobilla.net/lad/slv2@1122 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'slv2')
-rw-r--r-- | slv2/types.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/slv2/types.h b/slv2/types.h index 59ebefe..e72d880 100644 --- a/slv2/types.h +++ b/slv2/types.h @@ -31,9 +31,8 @@ extern "C" { #define SLV2_PORT_CLASS_OUTPUT "http://lv2plug.in/ns/lv2core#OutputPort" #define SLV2_PORT_CLASS_CONTROL "http://lv2plug.in/ns/lv2core#ControlPort" #define SLV2_PORT_CLASS_AUDIO "http://lv2plug.in/ns/lv2core#AudioPort" -#define SLV2_PORT_CLASS_MIDI "http://ll-plugins.nongnu.org/lv2/ext/MidiPort" -#define SLV2_PORT_CLASS_OSC "http://drobilla.net/ns/lv2ext/osc/0#OSCPort" #define SLV2_PORT_CLASS_EVENT "http://lv2plug.in/ns/ext/event#EventPort" +#define SLV2_EVENT_CLASS_MIDI "http://lv2plug.in/ns/ext/midi#MidiEvent" /** A port on a plugin. Opaque, but valid to compare to NULL. */ |