1
0
Fork 0
nih-plug/src/wrapper.rs
2022-04-24 15:48:05 +02:00

15 lines
385 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 mod clap;
pub mod state;
pub(crate) mod util;
#[cfg(feature = "standalone")]
pub mod standalone;
#[cfg(feature = "vst3")]
pub mod vst3;
// This is used by the wrappers.
pub use util::setup_logger;