Function SDL_GetStorageSpaceRemaining

pub unsafe extern "C" fn SDL_GetStorageSpaceRemaining(
    storage: *mut SDL_Storage,
) -> u64
Available on crate feature dep_sdl3 only.
Expand description

Queries the remaining space in a storage container.

§Parameters

  • storage: a storage container to query.

§Return value

Returns the amount of remaining space, in bytes.

§Availability

This function is available since SDL 3.2.0.

§See also