pub type LavLoggingCallback = Option<unsafe extern "C" fn(level: c_int, message: *const c_char)>;Expand description
Configure and query logging.
These functions may be used before library initialization, the intent being that you can get initialization logs. These functions, like all other functions, cannot be used after library termination.
Aliased Type§
pub enum LavLoggingCallback {
None,
Some(unsafe extern "C" fn(i32, *const i8)),
}