Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 3 additions & 5 deletions rust/src/interaction/handler.rs
Original file line number Diff line number Diff line change
Expand Up @@ -272,11 +272,9 @@ pub struct InteractionHandlerTask {
ctxt: *mut c_void,
task: Option<
unsafe extern "C" fn(
taskCtxt: *mut c_void,
progress: Option<
unsafe extern "C" fn(progressCtxt: *mut c_void, cur: usize, max: usize) -> bool,
>,
progressCtxt: *mut c_void,
*mut c_void,
progress: Option<unsafe extern "C" fn(*mut c_void, cur: usize, max: usize) -> bool>,
*mut c_void,
),
>,
}
Expand Down
Loading