LV2_Lib_Descriptor_Function

Type Alias LV2_Lib_Descriptor_Function 

Source
pub type LV2_Lib_Descriptor_Function = Option<unsafe extern "C" fn(bundle_path: *const c_char, features: *const *const LV2_Feature) -> *const LV2_Lib_Descriptor>;
Expand description

Type of the lv2_lib_descriptor() function in an LV2 library.

Aliased Type§

pub enum LV2_Lib_Descriptor_Function {
    None,
    Some(unsafe extern "C" fn(*const i8, *const *const LV2_Feature) -> *const LV2_Lib_Descriptor),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(unsafe extern "C" fn(*const i8, *const *const LV2_Feature) -> *const LV2_Lib_Descriptor)

Some value of type T.