| SDL_GetIOStatus(3) | SDL3 FUNCTIONS | SDL_GetIOStatus(3) |
SDL_GetIOStatus - Query the stream status of an SDL_IOStream .
Defined in SDL3/SDL_iostream.h
#include "SDL3/SDL.h"
SDL_IOStatus SDL_GetIOStatus(SDL_IOStream *context);
This information can be useful to decide if a short read or write was due to an error, an EOF, or a non-blocking operation that isn't yet ready to complete.
An SDL_IOStream
SDL_ReadIO
or SDL_WriteIO
call; don't expect it to change if you just call this query function in a
tight loop.
( SDL_IOStatus ) Returns an SDL_IOStatus
enum with the current state.
This function is not thread safe.
This function is available since SDL 3.2.0.
| SDL 3.2.10 | Simple Directmedia Layer |