retro_vfs_readdir_t

Type Alias retro_vfs_readdir_t 

Source
pub type retro_vfs_readdir_t = Option<unsafe extern "C" fn(dirstream: *mut retro_vfs_dir_handle) -> bool>;
Expand description

Read the directory entry at the current position, and move the read pointer to the next position. Returns true on success, false if already on the last entry. Introduced in VFS API v3

Aliased Type§

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

Variants§

§1.0.0

None

No value.

§1.0.0

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

Some value of type T.