1
0
Fork 0
nih-plug/src/wrapper.rs

7 lines
239 B
Rust
Raw Normal View History

2022-01-26 22:37:45 +11:00
//! 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;
2022-01-26 22:37:45 +11:00
pub mod vst3;