pub type vsl_frame_cleanup = Option<unsafe extern "C" fn(frame: *mut VSLFrame)>;Expand description
Function pointer definition which will be called as part of @ref vsl_frame_unregister. This is typically used to free resources associated with the frame on either client or host side.
Aliased Type§
pub enum vsl_frame_cleanup {
None,
Some(unsafe extern "C" fn(*mut vsl_frame)),
}