SDL_IOWhence.3type - Man Page
Name
SDL_IOWhence ā Possible whence values for SDL_IOStream
seeking.
Header File
Defined in SDL3/SDL_iostream.h
Synopsis
#include "SDL3/SDL.h" typedef enum SDL_IOWhence { SDL_IO_SEEK_SET, /**< Seek from the beginning of data */ SDL_IO_SEEK_CUR, /**< Seek relative to current read point */ SDL_IO_SEEK_END /**< Seek relative to the end of data */ } SDL_IOWhence;
Description
These map to the same "whence" concept that fseek or lseek use in the standard C runtime.
Availability
This enum is available since SDL 3.2.0.
Info
SDL 3.2.2 Simple Directmedia Layer SDL3 DATATYPES