Type Alias ULFileSystemGetFileSizeCallback

Source
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),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(unsafe extern "C" fn(_: i32, _: *mut i64) -> bool)

Some value of type T.