SDL_IOWhence - Possible whence values for SDL_IOStream seeking.
Contents
Availability
This enum is available since SDL 3.2.0.
Simple Directmedia Layer SDL 3.2.20 SDL_IOWhence(3type)
Description
These map to the same "whence" concept that fseek or lseek use in the standard C runtime.
Name
SDL_IOWhence - Possible whence values for SDL_IOStream seeking.
Synopsis
#include<SDL3/SDL_iostream.h>typedefenumSDL_IOWhence{SDL_IO_SEEK_SET,/**<Seekfromthebeginningofdata*/SDL_IO_SEEK_CUR,/**<Seekrelativetocurrentreadpoint*/SDL_IO_SEEK_END/**<Seekrelativetotheendofdata*/}SDL_IOWhence;