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),
}