summaryrefslogtreecommitdiffstats
path: root/slv2/types.h
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-02-04 01:49:51 +0000
committerDavid Robillard <d@drobilla.net>2011-02-04 01:49:51 +0000
commit4f3316c9c7842c4c745291b6699afaade6b8531d (patch)
treec9424da990c35a86b8f77d1352b2ca7a5c264a06 /slv2/types.h
parentcfa70a49ec316be6ab83769161a5e02b97c84f65 (diff)
downloadlilv-4f3316c9c7842c4c745291b6699afaade6b8531d.tar.gz
lilv-4f3316c9c7842c4c745291b6699afaade6b8531d.tar.bz2
lilv-4f3316c9c7842c4c745291b6699afaade6b8531d.zip
Remove repeated blank lines.
git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@2897 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'slv2/types.h')
-rw-r--r--slv2/types.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/slv2/types.h b/slv2/types.h
index 61c0dda..faab351 100644
--- a/slv2/types.h
+++ b/slv2/types.h
@@ -53,62 +53,47 @@ extern "C" {
#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. */
typedef struct _SLV2Port* SLV2Port;
-
/** A plugin. Opaque, but valid to compare to NULL. */
typedef struct _SLV2Plugin* SLV2Plugin;
-
/** A collection of plugins. Opaque, but valid to compare to NULL. */
typedef void* SLV2Plugins;
-
/** The world. Opaque, but valid to compare to NULL. */
typedef struct _SLV2World* SLV2World;
-
/** A plugin class. Opaque, but valid to compare to NULL. */
typedef struct _SLV2PluginClass* SLV2PluginClass;
-
/** A collection of plugin classes. Opaque, but valid to compare to NULL. */
typedef void* SLV2PluginClasses;
-
/** A typed value */
typedef struct _SLV2Value* SLV2Value;
-
/** A collection of typed values. */
typedef void* SLV2Values;
-
/** A scale point */
typedef struct _SLV2ScalePoint* SLV2ScalePoint;
-
/** A collection of scale points. */
typedef void* SLV2ScalePoints;
-
/** A plugin UI */
typedef struct _SLV2UI* SLV2UI;
-
/** A collection of plugin UIs. */
typedef void* SLV2UIs;
-
/** A set of query results (conceptually a table) */
typedef struct _SLV2Results* SLV2Results;
-
#ifdef __cplusplus
} /* extern "C" */
#endif
#endif /* __SLV2_TYPES_H__ */
-