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_SeekIO - Seek within an SDL_IOStream

Availability

       This function is available since SDL 3.2.0.

Description

       This function seeks to byte offset , relative to whence .  whence may be any of the following values:

       • 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

       If this stream can not seek, it will return -1.

Function Parameters

context
              a pointer to an SDL_IOStream
               structure.

       offset an offset in bytes, relative to whence location; can be negative.

       whence any of SDL_IO_SEEK_SET , SDL_IO_SEEK_CUR , SDL_IO_SEEK_END .

Header File

       Defined in SDL3/SDL_iostream.h

Name

       SDL_SeekIO - Seek within an SDL_IOStream
        data stream.

Return Value

       ( Sint64 ) Returns the final offset in the data stream after the seek or -1 on failure; call SDL_GetError
       () for more information.

See Also

(3), SDL_TellIO(3)

Simple Directmedia Layer                           SDL 3.2.10                                      SDL_SeekIO(3)

Synopsis

#include"SDL3/SDL.h"Sint64SDL_SeekIO(SDL_IOStream*context,Sint64offset,SDL_IOWhencewhence);

Thread Safety

       This function is not thread safe.

See Also