summaryrefslogtreecommitdiffstats
path: root/slv2/types.h
diff options
context:
space:
mode:
Diffstat (limited to 'slv2/types.h')
-rw-r--r--slv2/types.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/slv2/types.h b/slv2/types.h
index f0f9b7f..c22b2be 100644
--- a/slv2/types.h
+++ b/slv2/types.h
@@ -43,12 +43,19 @@ typedef enum _PortClass {
SLV2_MIDI_OUTPUT /**< MIDI output (LL extension) */
} SLV2PortClass;
+
+/** A port on a plugin. Opaque, but valid to compare to NULL. */
typedef struct _Port* SLV2Port;
+
+/** A plugin. Opaque, but valid to compare to NULL. */
typedef struct _Plugin* SLV2Plugin;
+
+/** The world. Opaque, but valid to compare to NULL. */
typedef struct _World* SLV2World;
+
#ifdef __cplusplus
}
#endif