aboutsummaryrefslogtreecommitdiffstats
path: root/lv2/lv2plug.in
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-04-13 19:54:32 +0000
committerDavid Robillard <d@drobilla.net>2012-04-13 19:54:32 +0000
commitc6b0224e3e4bf97383713220765dad6875d57c3e (patch)
tree5ef4e52c39d3a02841549d7ef8c2b79dd0a3c3bd /lv2/lv2plug.in
parent4ec850f5dc88d39f8cf67b9bc0f549dbf43788ce (diff)
downloadlv2-c6b0224e3e4bf97383713220765dad6875d57c3e.tar.xz
Add port-props.h
Diffstat (limited to 'lv2/lv2plug.in')
-rw-r--r--lv2/lv2plug.in/ns/ext/port-props/port-props.h42
1 files changed, 42 insertions, 0 deletions
diff --git a/lv2/lv2plug.in/ns/ext/port-props/port-props.h b/lv2/lv2plug.in/ns/ext/port-props/port-props.h
new file mode 100644
index 0000000..11274cc
--- /dev/null
+++ b/lv2/lv2plug.in/ns/ext/port-props/port-props.h
@@ -0,0 +1,42 @@
+/*
+ Copyright 2012 David Robillard <http://drobilla.net>
+
+ Permission to use, copy, modify, and/or distribute this software for any
+ purpose with or without fee is hereby granted, provided that the above
+ copyright notice and this permission notice appear in all copies.
+
+ THIS SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+*/
+
+/**
+ @file port-props.h
+ C definitions for the LV2 Port Props extension
+ <http://lv2plug.in/ns/ext/port-props>.
+*/
+
+#ifndef LV2_PORT_PROPS_H
+#define LV2_PORT_PROPS_H
+
+#define LV2_PORT_PROPS_URI "http://lv2plug.in/ns/ext/port-props"
+#define LV2_PORT_PROPS_PREFIX LV2_PORT_PROPS_URI "#"
+
+#define LV2_PORT_PROPS__causesArtifacts LV2_PORT_PROPS_PREFIX "causesArtifacts"
+#define LV2_PORT_PROPS__continuousCV LV2_PORT_PROPS_PREFIX "continuousCV"
+#define LV2_PORT_PROPS__discreteCV LV2_PORT_PROPS_PREFIX "discreteCV"
+#define LV2_PORT_PROPS__displayPriority LV2_PORT_PROPS_PREFIX "displayPriority"
+#define LV2_PORT_PROPS__expensive LV2_PORT_PROPS_PREFIX "expensive"
+#define LV2_PORT_PROPS__hasStrictBounds LV2_PORT_PROPS_PREFIX "hasStrictBounds"
+#define LV2_PORT_PROPS__logarithmic LV2_PORT_PROPS_PREFIX "logarithmic"
+#define LV2_PORT_PROPS__notAutomatic LV2_PORT_PROPS_PREFIX "notAutomatic"
+#define LV2_PORT_PROPS__notOnGUI LV2_PORT_PROPS_PREFIX "notOnGUI"
+#define LV2_PORT_PROPS__rangeSteps LV2_PORT_PROPS_PREFIX "rangeSteps"
+#define LV2_PORT_PROPS__supportsStrictBounds LV2_PORT_PROPS_PREFIX "supportsStrictBounds"
+#define LV2_PORT_PROPS__trigger LV2_PORT_PROPS_PREFIX "trigger"
+
+#endif /* LV2_PORT_PROPS_H */