pub type ovrLogCallback = Option<extern "C" fn(usize, c_int, *const c_char)>;Expand description
Signature of the logging callback function pointer type.
userData is an arbitrary value specified by the user of ovrInitParams.
level is one of the ovrLogLevel constants.
message is a UTF8-encoded null-terminated string.
see ovrInitParams, ovrLogLevel, ovr_Initialize
Aliased Type§
pub enum ovrLogCallback {
None,
Some(extern "C" fn(usize, i32, *const i8)),
}