phosphor-midi 0.3.21

MIDI I/O and message routing for the Phosphor DAW
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! MIDI I/O, controller detection, and message routing.
//!
//! Uses midir for cross-platform MIDI port access and wmidi for
//! zero-allocation message parsing in the audio thread.

pub mod message;
pub mod ports;
pub mod ring;

pub use message::{MidiMessage, MidiMessageType};
pub use ring::MidiRingBuffer;