pub type retro_vfs_tell_t = Option<unsafe extern "C" fn(stream: *mut retro_vfs_file_handle) -> i64>;Expand description
Get the current read / write position for the file. Returns -1 for error. Introduced in VFS API v1
Aliased Type§
pub enum retro_vfs_tell_t {
None,
Some(unsafe extern "C" fn(*mut retro_vfs_file_handle) -> i64),
}