use crate::{cstr, host::*, plugin::*};
use std::ffi::CStr;
pub const CLAP_EXT_TAIL: &CStr = cstr!("clap.tail");
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct clap_plugin_tail {
pub get: Option<unsafe extern "C" fn(plugin: *const clap_plugin) -> u32>,
}
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct clap_host_tail {
pub changed: Option<unsafe extern "C" fn(host: *const clap_host)>,
}