vst 0.4.0

VST 2.4 API implementation in rust. Create plugins or hosts.
Documentation
1
2
3
4
5
6
7
//! Structures for easing the implementation of VST plugins.

mod atomic_float;
mod parameter_transfer;

pub use self::atomic_float::AtomicFloat;
pub use self::parameter_transfer::{ParameterTransfer, ParameterTransferIterator};