retro_vfs_remove_t

Type Alias retro_vfs_remove_t 

Source
pub type retro_vfs_remove_t = Option<unsafe extern "C" fn(path: *const c_char) -> c_int>;
Expand description

Delete the specified file. Returns 0 on success, -1 on failure Introduced in VFS API v1

Aliased Type§

pub enum retro_vfs_remove_t {
    None,
    Some(unsafe extern "C" fn(*const i8) -> i32),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(unsafe extern "C" fn(*const i8) -> i32)

Some value of type T.