logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

SDL_IOWhence - Possible whence values for SDL_IOStream seeking.

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;

See Also