nice-plug-au2 0.1.0

Audio Unit (AU2) support for nice-plug
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#[derive(Debug, Clone)]
pub struct ParameterInfo {
    pub id: u32,
    pub name: String,
    pub units: String,
    pub min_value: f32,
    pub max_value: f32,
    pub default_value: f32,
    pub current_value: f32,
    pub step_count: i32,
    pub flags: u32,
    pub group_id: i32,
}

pub struct NiceAu2EditorHandle {
    pub handle: Box<dyn std::any::Any + Send>,
}