Scroll to navigation

SDL_StorageReady(3) SDL3 FUNCTIONS SDL_StorageReady(3)

NAME

SDL_StorageReady - Checks if the storage container is ready to use.

SYNOPSIS

#include "SDL3/SDL.h"
SDL_bool SDL_StorageReady(SDL_Storage *storage);

DESCRIPTION

This function should be called in regular intervals until it returns

SDL_TRUE
- however, it is not recommended to spinwait on this call, as the backend may depend on a synchronous message loop.

FUNCTION PARAMETERS

a storage container to query

RETURN VALUE

Returns SDL_TRUE
if the container is ready,

SDL_FALSE
otherwise

AVAILABILITY

This function is available since SDL 3.0.0.

SDL 3.1.0 SDL