2022-03-01 21:39:53 +01:00
|
|
|
#![cfg_attr(feature = "simd", feature(portable_simd))]
|
|
|
|
|
2022-01-26 20:51:34 +01:00
|
|
|
#[macro_use]
|
2022-01-26 11:26:30 +01:00
|
|
|
pub mod debug;
|
2022-02-02 15:12:33 +01:00
|
|
|
|
2022-03-03 23:23:51 +01:00
|
|
|
/// Everything you'd 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.
|
2022-01-28 14:33:29 +01:00
|
|
|
pub mod formatters;
|
2022-01-26 11:48:40 +01:00
|
|
|
pub mod util;
|
2022-01-26 12:50:30 +01:00
|
|
|
|
2022-03-03 23:23:51 +01:00
|
|
|
pub mod buffer;
|
|
|
|
pub mod context;
|
|
|
|
pub mod event_loop;
|
2022-02-02 15:12:33 +01:00
|
|
|
pub mod param;
|
|
|
|
pub mod plugin;
|
|
|
|
pub mod wrapper;
|