table of contents
SDL_ReadIO(3) | SDL3 FUNCTIONS | SDL_ReadIO(3) |
NAME¶
SDL_ReadIO - Read from a data source.
HEADER FILE¶
Defined in SDL3/SDL_iostream.h
SYNOPSIS¶
#include "SDL3/SDL.h"
size_t SDL_ReadIO(SDL_IOStream *context, void *ptr, size_t size);
DESCRIPTION¶
This function reads up size bytes from the data source to the area pointed at by ptr . This function may read less bytes than requested. It will return zero when the data stream is completely read, and
SDL_GetIOStatus () will return
SDL_IO_STATUS_EOF , or on error, and
SDL_GetIOStatus () will return
SDL_IO_STATUS_ERROR .
FUNCTION PARAMETERS¶
RETURN VALUE¶
Returns the number of bytes read, or 0 on end of file or other failure; call SDL_GetError () for more information.
AVAILABILITY¶
This function is available since SDL 3.1.3.
SEE ALSO¶
•(3), SDL_WriteIO(3), •(3), SDL_GetIOStatus(3)
SDL 3.1.6 | Simple Directmedia Layer |