wip: loading lv2 gui with suil and gtk3

This commit is contained in:
🪞👃🪞 2024-07-24 19:08:58 +03:00
parent ef619c595a
commit c0b1217e60
6 changed files with 516 additions and 30 deletions

View file

@ -60,20 +60,20 @@ impl Host {
ui_type_uri.into_raw(),
ui_bundle_path.into_raw(),
ui_binary_path.into_raw(),
features.as_ptr()
std::ptr::null_mut(),
)
}))
}
}
unsafe extern "C" fn write (
_: *mut c_void, _: u32, _: u32, _: u32, _: *const c_void
_controller: *mut c_void, _: u32, _: u32, _: u32, _: *const c_void
) {
panic!("write")
}
unsafe extern "C" fn index (
_: *mut c_void, _: *const i8
_controller: *mut c_void, _: *const i8
) -> u32 {
panic!("index");
0