1
0
Fork 0
nih-plug/src/wrapper.rs
Robbert van der Helm 56c1545196 Add a basic nih_export_clap!() macro
This does not do anything useful yet.
2022-02-28 14:45:31 +01:00

8 lines
253 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(crate) mod state;
pub(crate) mod util;
pub mod vst3;