pub type retro_vfs_rename_t = Option<unsafe extern "C" fn(old_path: *const c_char, new_path: *const c_char) -> c_int>;Expand description
Rename the specified file. Returns 0 on success, -1 on failure Introduced in VFS API v1
Aliased Type§
pub enum retro_vfs_rename_t {
None,
Some(unsafe extern "C" fn(*const i8, *const i8) -> i32),
}