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 ofVSMessageType.If
msgTypeisVSMessageType::Fatal),VapourSynthwill callabort()after the message handler returns. -
msg- The message.
Aliased Type§
pub enum VSLogHandler {
None,
Some(unsafe extern "system-unwind" fn(i32, *const i8, *mut c_void)),
}