aboutsummaryrefslogtreecommitdiffstats
path: root/src/port.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/port.h')
-rw-r--r--src/port.h15
1 files changed, 5 insertions, 10 deletions
diff --git a/src/port.h b/src/port.h
index df6e1f4..8a4644c 100644
--- a/src/port.h
+++ b/src/port.h
@@ -17,16 +17,11 @@
JALV_BEGIN_DECLS
typedef struct {
- const LilvPort* lilv_port; ///< LV2 port
- PortType type; ///< Data type
- PortFlow flow; ///< Data flow direction
- void* sys_port; ///< For audio/MIDI ports, otherwise NULL
- LV2_Evbuf* evbuf; ///< For MIDI ports, otherwise NULL
- void* widget; ///< Control widget, if applicable
- size_t buf_size; ///< Custom buffer size, or 0
- uint32_t index; ///< Port index
- bool reports_latency; ///< For control port outputs
- bool is_primary; ///< True for main control/reponse channel
+ const LilvPort* lilv_port; ///< LV2 port
+ PortType type; ///< Data type
+ PortFlow flow; ///< Data flow direction
+ void* widget; ///< Control widget, if applicable
+ uint32_t index; ///< Port index
} JalvPort;
JALV_END_DECLS