LavLoggingCallback

Type Alias LavLoggingCallback 

Source
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 u8)),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(unsafe extern "C" fn(i32, *const u8))

Some value of type T.