1
0
Fork 0
nih-plug/src/wrapper.rs
2022-02-12 16:04:46 +01:00

7 lines
239 B
Rust

//! Wrappers for different plugin types. Each wrapper has an entry point macro that you can pass the
//! name of a type that implements `Plugin` to. The macro will handle the rest.
pub(crate) mod state;
pub(crate) mod util;
pub mod vst3;