diff options
| author | Hanspeter Portner <dev@open-music-kontrollers.ch> | 2015-03-16 18:47:22 +0100 | 
|---|---|---|
| committer | Hanspeter Portner <dev@open-music-kontrollers.ch> | 2015-03-16 18:47:22 +0100 | 
| commit | 4a2647bd551f588f6ed744f0ba08571e2cf7832c (patch) | |
| tree | b7b958a7453663d6742081fcdecdc3e5378b9a23 /lv2/lv2plug.in/ns | |
| parent | 4985c77f6c10df405cce02861fe885d131644b83 (diff) | |
| download | lv2-4a2647bd551f588f6ed744f0ba08571e2cf7832c.tar.xz | |
Add missing C defines for notification protocols.
* add LV2_UI__PortProtocol
* add LV2_UI__protocol
* add LV2_UI__floatProtocol
* add LV2_UI__peakProtocol
Diffstat (limited to 'lv2/lv2plug.in/ns')
| -rw-r--r-- | lv2/lv2plug.in/ns/extensions/ui/ui.h | 4 | 
1 files changed, 4 insertions, 0 deletions
| diff --git a/lv2/lv2plug.in/ns/extensions/ui/ui.h b/lv2/lv2plug.in/ns/extensions/ui/ui.h index e7b55fb..a084dff 100644 --- a/lv2/lv2plug.in/ns/extensions/ui/ui.h +++ b/lv2/lv2plug.in/ns/extensions/ui/ui.h @@ -39,6 +39,7 @@  #define LV2_UI__Gtk3UI           LV2_UI_PREFIX "Gtk3UI"  #define LV2_UI__GtkUI            LV2_UI_PREFIX "GtkUI"  #define LV2_UI__PortNotification LV2_UI_PREFIX "PortNotification" +#define LV2_UI__PortProtocol     LV2_UI_PREFIX "PortProtocol"  #define LV2_UI__Qt4UI            LV2_UI_PREFIX "Qt4UI"  #define LV2_UI__Qt5UI            LV2_UI_PREFIX "Qt5UI"  #define LV2_UI__UI               LV2_UI_PREFIX "UI" @@ -55,6 +56,9 @@  #define LV2_UI__portMap          LV2_UI_PREFIX "portMap"  #define LV2_UI__portNotification LV2_UI_PREFIX "portNotification"  #define LV2_UI__portSubscribe    LV2_UI_PREFIX "portSubscribe" +#define LV2_UI__protocol         LV2_UI_PREFIX "protocol" +#define LV2_UI__floatProtocol    LV2_UI_PREFIX "floatProtocol" +#define LV2_UI__peakProtocol     LV2_UI_PREFIX "peakProtocol"  #define LV2_UI__resize           LV2_UI_PREFIX "resize"  #define LV2_UI__showInterface    LV2_UI_PREFIX "showInterface"  #define LV2_UI__touch            LV2_UI_PREFIX "touch" |