mirror of
https://codeberg.org/unspeaker/tek.git
synced 2025-12-08 12:46:42 +01:00
wip: refactor into fewer crates
This commit is contained in:
parent
c367a0444e
commit
77703d83a5
105 changed files with 64 additions and 131 deletions
12
deps/vst/src/prelude.rs
vendored
Normal file
12
deps/vst/src/prelude.rs
vendored
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