Type Alias libvnc_sys::rfb::rfbTranslateFnType

source ·
pub type rfbTranslateFnType = Option<unsafe extern "C" fn(table: *mut c_char, in_: *mut rfbPixelFormat, out: *mut rfbPixelFormat, iptr: *mut c_char, optr: *mut c_char, bytesBetweenInputLines: c_int, width: c_int, height: c_int)>;
Expand description

rfbTranslateFnType is the type of translation functions.

Aliased Type§

enum rfbTranslateFnType {
    None,
    Some(unsafe extern "C" fn(_: *mut i8, _: *mut rfbPixelFormat, _: *mut rfbPixelFormat, _: *mut i8, _: *mut i8, _: i32, _: i32, _: i32)),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(unsafe extern "C" fn(_: *mut i8, _: *mut rfbPixelFormat, _: *mut rfbPixelFormat, _: *mut i8, _: *mut i8, _: i32, _: i32, _: i32))

Some value of type T.