pub type ULFileSystemGetFileSizeCallback = Option<unsafe extern "C" fn(handle: ULFileHandle, result: *mut c_longlong) -> bool>;Expand description
The callback invoked when the FileSystem wants to get the file size of a previously opened file, store result in ‘result’. Return true on success.
Aliased Type§
enum ULFileSystemGetFileSizeCallback {
None,
Some(unsafe extern "C" fn(_: i32, _: *mut i64) -> bool),
}