wip: ArrangerStandalone

This commit is contained in:
🪞👃🪞 2024-08-21 21:03:46 +03:00
parent 1104093395
commit 3cbb2d2e0b
19 changed files with 165 additions and 231 deletions

View file

@ -6,7 +6,7 @@ pub mod bound;
pub struct Host(*mut self::bound::SuilHost);
impl Drop for Host {
fn drop (&mut self) -> () {
fn drop (&mut self) {
unsafe {
bound::suil_host_free(self.0)
}
@ -75,7 +75,6 @@ unsafe extern "C" fn write (
unsafe extern "C" fn index (
_controller: *mut c_void, _: *const i8
) -> u32 {
panic!("index");
0
}