Type Alias PFN_CMSG_STREAM_OUTPUT

Source
pub type PFN_CMSG_STREAM_OUTPUT = Option<unsafe extern "C" fn(pvArg: *const c_void, pbData: *mut BYTE, cbData: DWORD, fFinal: BOOL) -> BOOL>;

Aliased Type§

enum PFN_CMSG_STREAM_OUTPUT {
    None,
    Some(unsafe extern "C" fn(_: *const c_void, _: *mut u8, _: u32, _: i32) -> i32),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(unsafe extern "C" fn(_: *const c_void, _: *mut u8, _: u32, _: i32) -> i32)

Some value of type T.