Expand description
MIDI sequencer I/O and enumeration
Structs
- snd_seq_addr_t wrapper
- snd_seq_client_info_t wrapper
- Iterates over clients connected to the seq API (both kernel and userspace clients).
- snd_seq_connect_t wrapper
- snd_seq_ev_queue_control_t wrapper
- snd_seq_result_t wrapper
- snd_seq_event_t wrapper
- Struct for receiving input events from a sequencer. The methods offered by this object may modify the internal input buffer of the sequencer, which must not happen while an
Event
is alive that has been obtained from a call toevent_input
(which takesInput
by mutable reference for this reason). This is because the event might directly reference the sequencer’s input buffer for variable-length messages (e.g. Sysex). - snd_midi_event_t Wrapper
- SND_SEQ_PORT_CAP_xxx constants
- snd_seq_port_info_t wrapper
- Iterates over clients connected to the seq API (both kernel and userspace clients).
- snd_seq_port_subscribe_t wrapper
- Iterates over port subscriptions for a given client:port/type.
- SND_SEQ_PORT_TYPE_xxx constants
- snd_seq_queue_status_t wrapper
- snd_seq_queue_tempo_t wrapper
- SND_SEQ_REMOVE_xxx constants
- snd_seq_remove_events_t wrapper
- snd_seq_t wrapper
Enums
- SND_SEQ_EVENT_xxx constants
- snd_seq_query_subs_type_t wrapper
Traits
- Internal trait implemented for different event type structs (
EvNote
,EvCtrl
, etc).