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

24 lines
601 B
Rust
Raw Normal View History

2022-03-04 09:30:29 +11:00
//! Documentation is currently a work in progress. Import everything from the [`prelude`] module and
//! check out the example plugins to get started.
#![cfg_attr(feature = "docs", feature(doc_auto_cfg))]
#![cfg_attr(feature = "simd", feature(portable_simd))]
#[macro_use]
2022-03-04 09:34:06 +11:00
mod debug;
2022-02-03 01:12:33 +11:00
2022-03-04 09:30:29 +11:00
/// Everything you'll need to use NIH-plug. Import this with `use nih_plug::prelude::*;`.
pub mod prelude;
// These modules have also been re-exported in the prelude.
pub mod formatters;
pub mod util;
pub mod buffer;
pub mod context;
2022-03-04 09:34:06 +11:00
mod event_loop;
2022-04-08 07:28:31 +10:00
pub mod midi;
2022-02-03 01:12:33 +11:00
pub mod param;
pub mod plugin;
pub mod wrapper;