mirror of
https://codeberg.org/unspeaker/tek.git
synced 2026-04-03 21:00:44 +02:00
refactor: decided i don't like the deps/ subdir any longer
This commit is contained in:
parent
6411a82279
commit
9b4f7f25c1
45 changed files with 5 additions and 5 deletions
12
vst/src/prelude.rs
Normal file
12
vst/src/prelude.rs
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
//! A collection of commonly used items for implement a Plugin
|
||||
|
||||
#[doc(no_inline)]
|
||||
pub use crate::api::{Events, Supported};
|
||||
#[doc(no_inline)]
|
||||
pub use crate::buffer::{AudioBuffer, SendEventBuffer};
|
||||
#[doc(no_inline)]
|
||||
pub use crate::event::{Event, MidiEvent};
|
||||
#[doc(no_inline)]
|
||||
pub use crate::plugin::{CanDo, Category, HostCallback, Info, Plugin, PluginParameters};
|
||||
#[doc(no_inline)]
|
||||
pub use crate::util::{AtomicFloat, ParameterTransfer};
|
||||
Loading…
Add table
Add a link
Reference in a new issue