Blast-Radius Aware AI Code Review for Business-Critical Systems
LiveReview LiveReview Explore LiveReview

SDL_IOStatus - SDL_IOStream status, set by a read or write operation.

Availability

       This enum is available since SDL 3.2.0.

Simple Directmedia Layer                           SDL 3.2.20                                SDL_IOStatus(3type)

Name

       SDL_IOStatus - SDL_IOStream status, set by a read or write operation.

Synopsis

#include<SDL3/SDL_iostream.h>typedefenumSDL_IOStatus{SDL_IO_STATUS_READY,/**<Everythingisready(noerrorsandnotEOF).*/SDL_IO_STATUS_ERROR,/**<ReadorwriteI/Oerror*/SDL_IO_STATUS_EOF,/**<Endoffile*/SDL_IO_STATUS_NOT_READY,/**<NonblockingI/O,notready*/SDL_IO_STATUS_READONLY,/**<Triedtowritearead-onlybuffer*/SDL_IO_STATUS_WRITEONLY/**<Triedtoreadawrite-onlybuffer*/}SDL_IOStatus;

See Also