retro_midi_read_t

Type Alias retro_midi_read_t 

Source
pub type retro_midi_read_t = Option<unsafe extern "C" fn(byte: *mut u8) -> bool>;
Expand description

Reads next byte from the input stream. Returns true if byte is read, false otherwise.

Aliased Type§

pub enum retro_midi_read_t {
    None,
    Some(unsafe extern "C" fn(*mut u8) -> bool),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(unsafe extern "C" fn(*mut u8) -> bool)

Some value of type T.