From f95cf059a72e6185c4d72696e0620a673c3683cd Mon Sep 17 00:00:00 2001 From: David Robillard Date: Tue, 7 Aug 2007 23:46:09 +0000 Subject: Changed slv2_port_get_type to slv2_port_get_data_type, and SLV2PortType to SLV2PortDataType. Fixed autoconf warning. git-svn-id: http://svn.drobilla.net/lad/slv2@682 a436a847-0d15-0410-975c-d299462d15a1 --- slv2/types.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'slv2/types.h') diff --git a/slv2/types.h b/slv2/types.h index 4b1782d..275d7c4 100644 --- a/slv2/types.h +++ b/slv2/types.h @@ -35,13 +35,13 @@ extern "C" { * Further class information can be using slv2_port_get_value(p, "rdf:type") * or a custom query. */ -typedef enum _SLV2PortType { +typedef enum _SLV2PortDataType { SLV2_PORT_TYPE_UNKNOWN, SLV2_PORT_TYPE_CONTROL, /**< One float per block */ SLV2_PORT_TYPE_AUDIO, /**< One float per frame */ SLV2_PORT_TYPE_MIDI, /**< A buffer of MIDI data (LL extension) */ SLV2_PORT_TYPE_OSC, /**< A buffer of OSC data (DR extension) */ -} SLV2PortType; +} SLV2PortDataType; /** Direction (input or output) of a port * -- cgit v1.2.1