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
msgType
isVSMessageType::Fatal
),VapourSynth
will callabort()
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)),
}