Skip to content

Commit

Permalink
fixup! Update for CLAP 1.1.8
Browse files Browse the repository at this point in the history
  • Loading branch information
robbert-vdh committed Nov 5, 2023
1 parent 04779b5 commit 0ac02dc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/ext/draft/configurable_audio_ports.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ pub struct clap_audio_port_configuration_request {
pub port_index: u32,
pub channel_count: u32,
pub port_type: *const c_char,
pub port_details: *const c_char,
pub port_details: *const c_void,
}

unsafe impl Send for clap_audio_port_configuration_request {}
Expand Down
6 changes: 1 addition & 5 deletions src/ext/draft/extensible_audio_ports.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,6 @@ pub struct clap_plugin_extensible_audio_ports {
) -> bool,
>,
pub remove_port: Option<
unsafe extern "C" fn(
plugin: *const clap_plugin,
is_input: bool,
channel_count: u32,
) -> bool,
unsafe extern "C" fn(plugin: *const clap_plugin, is_input: bool, index: u32) -> bool,
>,
}

0 comments on commit 0ac02dc

Please sign in to comment.