retro_vfs_opendir_t

Type Alias retro_vfs_opendir_t 

Source
pub type retro_vfs_opendir_t = Option<unsafe extern "C" fn(dir: *const c_char, include_hidden: bool) -> *mut retro_vfs_dir_handle>;
Expand description

Open the specified directory for listing. Returns the opaque dir handle, or NULL for error. Support for the include_hidden argument may vary depending on the platform. Introduced in VFS API v3

Aliased Type§

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

Variants§

§1.0.0

None

No value.

§1.0.0

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

Some value of type T.