pub type b2AssertFcn = Option<unsafe extern "C" fn(condition: *const c_char, fileName: *const c_char, lineNumber: c_int) -> c_int>;Expand description
Prototype for the user assert callback. Return 0 to skip the debugger break.
Aliased Type§
pub enum b2AssertFcn {
None,
Some(unsafe extern "C" fn(*const i8, *const i8, i32) -> i32),
}