Type Alias VSLogHandler

Source
pub type VSLogHandler = Option<unsafe extern "system-unwind" fn(msgType: c_int, msg: *const c_char, userData: *mut c_void)>;
Expand description

§Arguments

  • msgType - The type of message. One of VSMessageType.

    If msgType is VSMessageType::Fatal), VapourSynth will call abort() after the message handler returns.

  • msg - The message.

Aliased Type§

enum VSLogHandler {
    None,
    Some(unsafe extern "system-unwind" fn(i32, *const i8, *mut c_void)),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(unsafe extern "system-unwind" fn(i32, *const i8, *mut c_void))

Some value of type T.