2015-06-21 09:33:46 -06:00
|
|
|
/*
|
|
|
|
Simple DirectMedia Layer
|
2024-01-01 14:15:26 -07:00
|
|
|
Copyright (C) 1997-2024 Sam Lantinga <slouken@libsdl.org>
|
2015-06-21 09:33:46 -06:00
|
|
|
|
|
|
|
This software is provided 'as-is', without any express or implied
|
|
|
|
warranty. In no event will the authors be held liable for any damages
|
|
|
|
arising from the use of this software.
|
|
|
|
|
|
|
|
Permission is granted to anyone to use this software for any purpose,
|
|
|
|
including commercial applications, and to alter it and redistribute it
|
|
|
|
freely, subject to the following restrictions:
|
|
|
|
|
|
|
|
1. The origin of this software must not be misrepresented; you must not
|
|
|
|
claim that you wrote the original software. If you use this software
|
|
|
|
in a product, an acknowledgment in the product documentation would be
|
|
|
|
appreciated but is not required.
|
|
|
|
2. Altered source versions must be plainly marked as such, and must not be
|
|
|
|
misrepresented as being the original software.
|
|
|
|
3. This notice may not be removed or altered from any source distribution.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2024-03-14 21:30:59 -06:00
|
|
|
* \file SDL_iostream.h
|
2015-06-21 09:33:46 -06:00
|
|
|
*
|
|
|
|
* This file provides a general interface for SDL to read and write
|
|
|
|
* data streams. It can easily be extended to files, memory, etc.
|
2024-03-14 23:16:31 -06:00
|
|
|
*
|
|
|
|
* SDL_IOStream is not related to the standard C++ iostream class, other
|
|
|
|
* than both are abstract interfaces to read/write data.
|
2015-06-21 09:33:46 -06:00
|
|
|
*/
|
|
|
|
|
2024-03-14 21:30:59 -06:00
|
|
|
#ifndef SDL_iostream_h_
|
|
|
|
#define SDL_iostream_h_
|
2015-06-21 09:33:46 -06:00
|
|
|
|
2022-11-26 21:43:38 -07:00
|
|
|
#include <SDL3/SDL_stdinc.h>
|
|
|
|
#include <SDL3/SDL_error.h>
|
2023-10-11 17:59:51 -06:00
|
|
|
#include <SDL3/SDL_properties.h>
|
2015-06-21 09:33:46 -06:00
|
|
|
|
2022-12-22 09:38:59 -07:00
|
|
|
#include <SDL3/SDL_begin_code.h>
|
2015-06-21 09:33:46 -06:00
|
|
|
/* Set up for C function definitions, even when using C++ */
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2024-03-14 17:32:50 -06:00
|
|
|
/* SDL_IOStream status, set by a read or write operation */
|
|
|
|
typedef enum SDL_IOStatus
|
2024-03-13 10:29:17 -06:00
|
|
|
{
|
2024-03-14 17:32:50 -06:00
|
|
|
SDL_IO_STATUS_READY, /**< Everything is ready */
|
|
|
|
SDL_IO_STATUS_ERROR, /**< Read or write I/O error */
|
|
|
|
SDL_IO_STATUS_EOF, /**< End of file */
|
|
|
|
SDL_IO_STATUS_NOT_READY, /**< Non blocking I/O, not ready */
|
|
|
|
SDL_IO_STATUS_READONLY, /**< Tried to write a read-only buffer */
|
|
|
|
SDL_IO_STATUS_WRITEONLY /**< Tried to read a write-only buffer */
|
|
|
|
} SDL_IOStatus;
|
|
|
|
|
|
|
|
typedef struct SDL_IOStreamInterface
|
2015-06-21 09:33:46 -06:00
|
|
|
{
|
|
|
|
/**
|
2024-03-14 17:32:50 -06:00
|
|
|
* Return the number of bytes in this SDL_IOStream
|
2023-08-06 14:51:03 -06:00
|
|
|
*
|
|
|
|
* \return the total size of the data stream, or -1 on error.
|
2015-06-21 09:33:46 -06:00
|
|
|
*/
|
2024-03-11 23:14:38 -06:00
|
|
|
Sint64 (SDLCALL *size)(void *userdata);
|
2015-06-21 09:33:46 -06:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Seek to \c offset relative to \c whence, one of stdio's whence values:
|
2024-03-14 17:32:50 -06:00
|
|
|
* SDL_IO_SEEK_SET, SDL_IO_SEEK_CUR, SDL_IO_SEEK_END
|
2015-06-21 09:33:46 -06:00
|
|
|
*
|
|
|
|
* \return the final offset in the data stream, or -1 on error.
|
|
|
|
*/
|
2024-03-11 23:14:38 -06:00
|
|
|
Sint64 (SDLCALL *seek)(void *userdata, Sint64 offset, int whence);
|
2015-06-21 09:33:46 -06:00
|
|
|
|
|
|
|
/**
|
2022-12-14 13:42:54 -07:00
|
|
|
* Read up to \c size bytes from the data stream to the area pointed
|
|
|
|
* at by \c ptr.
|
2015-06-21 09:33:46 -06:00
|
|
|
*
|
2024-03-14 11:43:22 -06:00
|
|
|
* On an incomplete read, you should set `*status` to a value from the
|
2024-03-14 17:32:50 -06:00
|
|
|
* SDL_IOStatus enum. You do not have to explicitly set this on
|
2024-03-14 11:43:22 -06:00
|
|
|
* a complete, successful read.
|
|
|
|
*
|
2023-08-06 14:51:03 -06:00
|
|
|
* \return the number of bytes read
|
2015-06-21 09:33:46 -06:00
|
|
|
*/
|
2024-03-14 17:32:50 -06:00
|
|
|
size_t (SDLCALL *read)(void *userdata, void *ptr, size_t size, SDL_IOStatus *status);
|
2015-06-21 09:33:46 -06:00
|
|
|
|
|
|
|
/**
|
2022-12-14 13:42:54 -07:00
|
|
|
* Write exactly \c size bytes from the area pointed at by \c ptr
|
2023-08-06 14:51:03 -06:00
|
|
|
* to data stream.
|
2015-06-21 09:33:46 -06:00
|
|
|
*
|
2024-03-14 11:43:22 -06:00
|
|
|
* On an incomplete write, you should set `*status` to a value from the
|
2024-03-14 17:32:50 -06:00
|
|
|
* SDL_IOStatus enum. You do not have to explicitly set this on
|
2024-03-14 11:43:22 -06:00
|
|
|
* a complete, successful write.
|
|
|
|
*
|
2023-08-06 14:51:03 -06:00
|
|
|
* \return the number of bytes written
|
2015-06-21 09:33:46 -06:00
|
|
|
*/
|
2024-03-14 17:32:50 -06:00
|
|
|
size_t (SDLCALL *write)(void *userdata, const void *ptr, size_t size, SDL_IOStatus *status);
|
2015-06-21 09:33:46 -06:00
|
|
|
|
|
|
|
/**
|
2024-03-11 23:14:38 -06:00
|
|
|
* Close and free any allocated resources.
|
|
|
|
*
|
2024-03-14 17:32:50 -06:00
|
|
|
* The SDL_IOStream is still destroyed even if this fails, so clean up anything
|
2024-03-11 23:14:38 -06:00
|
|
|
* even if flushing to disk returns an error.
|
2015-06-21 09:33:46 -06:00
|
|
|
*
|
|
|
|
* \return 0 if successful or -1 on write error when flushing data.
|
|
|
|
*/
|
2024-03-11 23:14:38 -06:00
|
|
|
int (SDLCALL *close)(void *userdata);
|
2024-03-14 17:32:50 -06:00
|
|
|
} SDL_IOStreamInterface;
|
2023-07-09 14:36:00 -06:00
|
|
|
|
2015-06-21 09:33:46 -06:00
|
|
|
|
2024-03-11 23:14:38 -06:00
|
|
|
/**
|
|
|
|
* This is the read/write operation structure -- opaque, as of SDL3!
|
|
|
|
*/
|
2024-03-14 17:32:50 -06:00
|
|
|
typedef struct SDL_IOStream SDL_IOStream;
|
2015-06-21 09:33:46 -06:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
2024-03-14 17:32:50 -06:00
|
|
|
* \name IOFrom functions
|
2015-06-21 09:33:46 -06:00
|
|
|
*
|
2024-03-14 17:32:50 -06:00
|
|
|
* Functions to create SDL_IOStream structures from various data streams.
|
2015-06-21 09:33:46 -06:00
|
|
|
*/
|
|
|
|
/* @{ */
|
|
|
|
|
2021-10-08 18:22:48 -06:00
|
|
|
/**
|
2024-03-14 17:32:50 -06:00
|
|
|
* Use this function to create a new SDL_IOStream structure for reading from
|
2021-10-08 18:22:48 -06:00
|
|
|
* and/or writing to a named file.
|
|
|
|
*
|
|
|
|
* The `mode` string is treated roughly the same as in a call to the C
|
|
|
|
* library's fopen(), even if SDL doesn't happen to use fopen() behind the
|
|
|
|
* scenes.
|
|
|
|
*
|
|
|
|
* Available `mode` strings:
|
|
|
|
*
|
|
|
|
* - "r": Open a file for reading. The file must exist.
|
|
|
|
* - "w": Create an empty file for writing. If a file with the same name
|
|
|
|
* already exists its content is erased and the file is treated as a new
|
|
|
|
* empty file.
|
|
|
|
* - "a": Append to a file. Writing operations append data at the end of the
|
|
|
|
* file. The file is created if it does not exist.
|
|
|
|
* - "r+": Open a file for update both reading and writing. The file must
|
|
|
|
* exist.
|
|
|
|
* - "w+": Create an empty file for both reading and writing. If a file with
|
|
|
|
* the same name already exists its content is erased and the file is
|
|
|
|
* treated as a new empty file.
|
|
|
|
* - "a+": Open a file for reading and appending. All writing operations are
|
|
|
|
* performed at the end of the file, protecting the previous content to be
|
|
|
|
* overwritten. You can reposition (fseek, rewind) the internal pointer to
|
|
|
|
* anywhere in the file for reading, but writing operations will move it
|
|
|
|
* back to the end of file. The file is created if it does not exist.
|
|
|
|
*
|
|
|
|
* **NOTE**: In order to open a file as a binary file, a "b" character has to
|
|
|
|
* be included in the `mode` string. This additional "b" character can either
|
|
|
|
* be appended at the end of the string (thus making the following compound
|
|
|
|
* modes: "rb", "wb", "ab", "r+b", "w+b", "a+b") or be inserted between the
|
|
|
|
* letter and the "+" sign for the mixed modes ("rb+", "wb+", "ab+").
|
|
|
|
* Additional characters may follow the sequence, although they should have no
|
|
|
|
* effect. For example, "t" is sometimes appended to make explicit the file is
|
|
|
|
* a text file.
|
|
|
|
*
|
|
|
|
* This function supports Unicode filenames, but they must be encoded in UTF-8
|
|
|
|
* format, regardless of the underlying operating system.
|
|
|
|
*
|
2024-03-14 17:32:50 -06:00
|
|
|
* As a fallback, SDL_IOFromFile() will transparently open a matching filename
|
2021-10-08 18:22:48 -06:00
|
|
|
* in an Android app's `assets`.
|
|
|
|
*
|
2024-03-15 13:34:29 -06:00
|
|
|
* Closing the SDL_IOStream will close SDL's internal file handle.
|
2021-10-08 18:22:48 -06:00
|
|
|
*
|
2024-03-13 08:12:14 -06:00
|
|
|
* The following properties may be set at creation time by SDL:
|
|
|
|
*
|
2024-03-14 17:32:50 -06:00
|
|
|
* - `SDL_PROP_IOSTREAM_WINDOWS_HANDLE_POINTER`: a pointer, that can be cast
|
|
|
|
* to a win32 `HANDLE`, that this SDL_IOStream is using to access the filesystem.
|
2024-03-13 08:12:14 -06:00
|
|
|
* If the program isn't running on Windows, or SDL used some other method
|
|
|
|
* to access the filesystem, this property will not be set.
|
2024-03-14 17:32:50 -06:00
|
|
|
* - `SDL_PROP_IOSTREAM_STDIO_HANDLE_POINTER`: a pointer, that can be cast
|
|
|
|
* to a stdio `FILE *`, that this SDL_IOStream is using to access the filesystem.
|
2024-03-13 08:12:14 -06:00
|
|
|
* If SDL used some other method to access the filesystem, this property
|
|
|
|
* will not be set. PLEASE NOTE that if SDL is using a different C runtime
|
|
|
|
* than your app, trying to use this pointer will almost certainly result
|
|
|
|
* in a crash! This is mostly a problem on Windows; make sure you build SDL
|
|
|
|
* and your app with the same compiler and settings to avoid it.
|
2024-03-14 17:32:50 -06:00
|
|
|
* - `SDL_PROP_IOSTREAM_ANDROID_AASSET_POINTER`: a pointer, that can be cast
|
|
|
|
* to an Android NDK `AAsset *`, that this SDL_IOStream is using to access the
|
2024-03-13 08:12:14 -06:00
|
|
|
* filesystem. If SDL used some other method to access the filesystem, this
|
|
|
|
* property will not be set.
|
|
|
|
*
|
2021-10-08 18:22:48 -06:00
|
|
|
* \param file a UTF-8 string representing the filename to open
|
|
|
|
* \param mode an ASCII string representing the mode to be used for opening
|
|
|
|
* the file.
|
2024-03-14 17:32:50 -06:00
|
|
|
* \returns a pointer to the SDL_IOStream structure that is created, or NULL on
|
2021-10-08 18:22:48 -06:00
|
|
|
* failure; call SDL_GetError() for more information.
|
|
|
|
*
|
2022-11-22 15:40:14 -07:00
|
|
|
* \since This function is available since SDL 3.0.0.
|
2021-10-26 19:36:05 -06:00
|
|
|
*
|
2024-03-14 17:32:50 -06:00
|
|
|
* \sa SDL_IOFromConstMem
|
|
|
|
* \sa SDL_IOFromMem
|
2024-03-15 13:34:29 -06:00
|
|
|
* \sa SDL_CloseIO
|
2024-03-14 17:32:50 -06:00
|
|
|
* \sa SDL_ReadIO
|
|
|
|
* \sa SDL_SeekIO
|
|
|
|
* \sa SDL_TellIO
|
|
|
|
* \sa SDL_WriteIO
|
2021-10-08 18:22:48 -06:00
|
|
|
*/
|
2024-03-14 17:32:50 -06:00
|
|
|
extern DECLSPEC SDL_IOStream *SDLCALL SDL_IOFromFile(const char *file, const char *mode);
|
2015-06-21 09:33:46 -06:00
|
|
|
|
2024-03-14 17:32:50 -06:00
|
|
|
#define SDL_PROP_IOSTREAM_WINDOWS_HANDLE_POINTER "SDL.iostream.windows.handle"
|
|
|
|
#define SDL_PROP_IOSTREAM_STDIO_HANDLE_POINTER "SDL.iostream.stdio.handle"
|
|
|
|
#define SDL_PROP_IOSTREAM_ANDROID_AASSET_POINTER "SDL.opstream.android.aasset"
|
2024-03-13 08:12:14 -06:00
|
|
|
|
2021-10-08 18:22:48 -06:00
|
|
|
/**
|
|
|
|
* Use this function to prepare a read-write memory buffer for use with
|
2024-03-14 17:32:50 -06:00
|
|
|
* SDL_IOStream.
|
2021-10-08 18:22:48 -06:00
|
|
|
*
|
2024-03-14 17:32:50 -06:00
|
|
|
* This function sets up an SDL_IOStream struct based on a memory area of a
|
2021-10-08 18:22:48 -06:00
|
|
|
* certain size, for both read and write access.
|
|
|
|
*
|
2024-03-14 17:32:50 -06:00
|
|
|
* This memory buffer is not copied by the SDL_IOStream; the pointer you provide must
|
2021-10-08 18:22:48 -06:00
|
|
|
* remain valid until you close the stream. Closing the stream will not free
|
|
|
|
* the original buffer.
|
|
|
|
*
|
2024-03-14 17:32:50 -06:00
|
|
|
* If you need to make sure the SDL_IOStream never writes to the memory buffer, you
|
|
|
|
* should use SDL_IOFromConstMem() with a read-only buffer of memory instead.
|
2021-10-08 18:22:48 -06:00
|
|
|
*
|
2024-03-14 17:32:50 -06:00
|
|
|
* \param mem a pointer to a buffer to feed an SDL_IOStream stream
|
2021-10-08 18:22:48 -06:00
|
|
|
* \param size the buffer size, in bytes
|
2024-03-14 17:32:50 -06:00
|
|
|
* \returns a pointer to a new SDL_IOStream structure, or NULL if it fails; call
|
2021-10-08 18:22:48 -06:00
|
|
|
* SDL_GetError() for more information.
|
|
|
|
*
|
2022-11-22 15:40:14 -07:00
|
|
|
* \since This function is available since SDL 3.0.0.
|
2021-10-26 19:36:05 -06:00
|
|
|
*
|
2024-03-14 17:32:50 -06:00
|
|
|
* \sa SDL_IOFromConstMem
|
|
|
|
* \sa SDL_IOFromFile
|
|
|
|
* \sa SDL_IOFromMem
|
2024-03-15 13:34:29 -06:00
|
|
|
* \sa SDL_CloseIO
|
2024-03-14 17:32:50 -06:00
|
|
|
* \sa SDL_ReadIO
|
|
|
|
* \sa SDL_SeekIO
|
|
|
|
* \sa SDL_TellIO
|
|
|
|
* \sa SDL_WriteIO
|
2021-10-08 18:22:48 -06:00
|
|
|
*/
|
2024-03-14 17:32:50 -06:00
|
|
|
extern DECLSPEC SDL_IOStream *SDLCALL SDL_IOFromMem(void *mem, size_t size);
|
2021-10-08 18:22:48 -06:00
|
|
|
|
|
|
|
/**
|
2024-03-14 17:32:50 -06:00
|
|
|
* Use this function to prepare a read-only memory buffer for use with SDL_IOStream.
|
2021-10-08 18:22:48 -06:00
|
|
|
*
|
2024-03-14 17:32:50 -06:00
|
|
|
* This function sets up an SDL_IOStream struct based on a memory area of a
|
2021-10-08 18:22:48 -06:00
|
|
|
* certain size. It assumes the memory area is not writable.
|
|
|
|
*
|
2024-03-14 17:32:50 -06:00
|
|
|
* Attempting to write to this SDL_IOStream stream will report an error without
|
2021-10-08 18:22:48 -06:00
|
|
|
* writing to the memory buffer.
|
|
|
|
*
|
2024-03-14 17:32:50 -06:00
|
|
|
* This memory buffer is not copied by the SDL_IOStream; the pointer you provide must
|
2021-10-08 18:22:48 -06:00
|
|
|
* remain valid until you close the stream. Closing the stream will not free
|
|
|
|
* the original buffer.
|
|
|
|
*
|
2024-03-14 17:32:50 -06:00
|
|
|
* If you need to write to a memory buffer, you should use SDL_IOFromMem()
|
2021-10-08 18:22:48 -06:00
|
|
|
* with a writable buffer of memory instead.
|
|
|
|
*
|
2024-03-14 17:32:50 -06:00
|
|
|
* \param mem a pointer to a read-only buffer to feed an SDL_IOStream stream
|
2021-10-08 18:22:48 -06:00
|
|
|
* \param size the buffer size, in bytes
|
2024-03-14 17:32:50 -06:00
|
|
|
* \returns a pointer to a new SDL_IOStream structure, or NULL if it fails; call
|
2021-10-08 18:22:48 -06:00
|
|
|
* SDL_GetError() for more information.
|
|
|
|
*
|
2022-11-22 15:40:14 -07:00
|
|
|
* \since This function is available since SDL 3.0.0.
|
2021-10-26 19:36:05 -06:00
|
|
|
*
|
2024-03-14 17:32:50 -06:00
|
|
|
* \sa SDL_IOFromConstMem
|
|
|
|
* \sa SDL_IOFromFile
|
|
|
|
* \sa SDL_IOFromMem
|
2024-03-15 13:34:29 -06:00
|
|
|
* \sa SDL_CloseIO
|
2024-03-14 17:32:50 -06:00
|
|
|
* \sa SDL_ReadIO
|
|
|
|
* \sa SDL_SeekIO
|
|
|
|
* \sa SDL_TellIO
|
2021-10-08 18:22:48 -06:00
|
|
|
*/
|
2024-03-14 17:32:50 -06:00
|
|
|
extern DECLSPEC SDL_IOStream *SDLCALL SDL_IOFromConstMem(const void *mem, size_t size);
|
2015-06-21 09:33:46 -06:00
|
|
|
|
2024-03-14 17:32:50 -06:00
|
|
|
/* @} *//* IOFrom functions */
|
2015-06-21 09:33:46 -06:00
|
|
|
|
|
|
|
|
2021-10-08 18:22:48 -06:00
|
|
|
/**
|
2024-03-14 17:32:50 -06:00
|
|
|
* Create a custom SDL_IOStream.
|
2021-10-08 18:22:48 -06:00
|
|
|
*
|
|
|
|
* Applications do not need to use this function unless they are providing
|
2024-03-14 17:32:50 -06:00
|
|
|
* their own SDL_IOStream implementation. If you just need an SDL_IOStream to
|
2021-10-08 18:22:48 -06:00
|
|
|
* read/write a common data source, you should use the built-in
|
2024-03-14 17:32:50 -06:00
|
|
|
* implementations in SDL, like SDL_IOFromFile() or SDL_IOFromMem(), etc.
|
2021-10-08 18:22:48 -06:00
|
|
|
*
|
2024-03-14 17:32:50 -06:00
|
|
|
* You must free the returned pointer with SDL_CloseIO().
|
2021-10-08 18:22:48 -06:00
|
|
|
*
|
2024-03-13 10:36:59 -06:00
|
|
|
*
|
2024-03-14 17:32:50 -06:00
|
|
|
* \param iface The function pointers that implement this SDL_IOStream.
|
2024-03-13 10:36:59 -06:00
|
|
|
* \param userdata The app-controlled pointer that is passed to iface's functions when called.
|
2021-10-08 18:22:48 -06:00
|
|
|
* \returns a pointer to the allocated memory on success, or NULL on failure;
|
|
|
|
* call SDL_GetError() for more information.
|
|
|
|
*
|
2022-11-22 15:40:14 -07:00
|
|
|
* \since This function is available since SDL 3.0.0.
|
2021-10-26 19:36:05 -06:00
|
|
|
*
|
2024-03-14 17:32:50 -06:00
|
|
|
* \sa SDL_CloseIO
|
2021-10-08 18:22:48 -06:00
|
|
|
*/
|
2024-03-14 17:32:50 -06:00
|
|
|
extern DECLSPEC SDL_IOStream *SDLCALL SDL_OpenIO(const SDL_IOStreamInterface *iface, void *userdata);
|
2021-10-08 18:22:48 -06:00
|
|
|
|
|
|
|
/**
|
2024-03-14 17:32:50 -06:00
|
|
|
* Close and free an allocated SDL_IOStream structure.
|
2021-10-08 18:22:48 -06:00
|
|
|
*
|
2024-03-14 21:14:46 -06:00
|
|
|
* SDL_CloseIO() closes and cleans up the SDL_IOStream stream. It releases
|
|
|
|
* any resources used by the stream and frees the SDL_IOStream itself. This
|
|
|
|
* returns 0 on success, or -1 if the stream failed to flush to its output
|
|
|
|
* (e.g. to disk).
|
2021-10-08 18:22:48 -06:00
|
|
|
*
|
2024-03-11 23:14:38 -06:00
|
|
|
* Note that if this fails to flush the stream to disk, this function reports
|
2024-03-14 17:32:50 -06:00
|
|
|
* an error, but the SDL_IOStream is still invalid once this function returns.
|
2021-10-08 18:22:48 -06:00
|
|
|
*
|
2024-03-14 17:32:50 -06:00
|
|
|
* \param context SDL_IOStream structure to close
|
2024-03-11 23:14:38 -06:00
|
|
|
* \returns 0 on success or a negative error code on failure; call
|
|
|
|
* SDL_GetError() for more information.
|
2021-10-08 18:22:48 -06:00
|
|
|
*
|
2022-11-22 15:40:14 -07:00
|
|
|
* \since This function is available since SDL 3.0.0.
|
2021-10-26 19:36:05 -06:00
|
|
|
*
|
2024-03-14 17:32:50 -06:00
|
|
|
* \sa SDL_IOFromConstMem
|
|
|
|
* \sa SDL_IOFromFile
|
|
|
|
* \sa SDL_IOFromMem
|
|
|
|
* \sa SDL_ReadIO
|
|
|
|
* \sa SDL_SeekIO
|
|
|
|
* \sa SDL_WriteIO
|
2021-10-08 18:22:48 -06:00
|
|
|
*/
|
2024-03-14 17:32:50 -06:00
|
|
|
extern DECLSPEC int SDLCALL SDL_CloseIO(SDL_IOStream *context);
|
2015-06-21 09:33:46 -06:00
|
|
|
|
2023-10-11 17:59:51 -06:00
|
|
|
/**
|
2024-03-14 17:32:50 -06:00
|
|
|
* Get the properties associated with an SDL_IOStream.
|
2023-10-11 17:59:51 -06:00
|
|
|
*
|
2024-03-14 17:32:50 -06:00
|
|
|
* \param context a pointer to an SDL_IOStream structure
|
2023-10-12 13:20:53 -06:00
|
|
|
* \returns a valid property ID on success or 0 on failure; call
|
|
|
|
* SDL_GetError() for more information.
|
2023-10-11 17:59:51 -06:00
|
|
|
*
|
|
|
|
* \since This function is available since SDL 3.0.0.
|
|
|
|
*
|
|
|
|
* \sa SDL_GetProperty
|
|
|
|
* \sa SDL_SetProperty
|
|
|
|
*/
|
2024-03-15 13:34:29 -06:00
|
|
|
extern DECLSPEC SDL_PropertiesID SDLCALL SDL_GetIOProperties(SDL_IOStream *context);
|
2023-10-11 17:59:51 -06:00
|
|
|
|
2024-03-14 17:32:50 -06:00
|
|
|
#define SDL_IO_SEEK_SET 0 /**< Seek from the beginning of data */
|
|
|
|
#define SDL_IO_SEEK_CUR 1 /**< Seek relative to current read point */
|
|
|
|
#define SDL_IO_SEEK_END 2 /**< Seek relative to the end of data */
|
2015-06-21 09:33:46 -06:00
|
|
|
|
2024-03-13 10:29:17 -06:00
|
|
|
/**
|
2024-03-14 17:32:50 -06:00
|
|
|
* Query the stream status of an SDL_IOStream.
|
2024-03-13 10:29:17 -06:00
|
|
|
*
|
|
|
|
* This information can be useful to decide if a short read or write was
|
|
|
|
* due to an error, an EOF, or a non-blocking operation that isn't yet
|
|
|
|
* ready to complete.
|
|
|
|
*
|
2024-03-14 17:32:50 -06:00
|
|
|
* An SDL_IOStream's status is only expected to change after a SDL_ReadIO or
|
|
|
|
* SDL_WriteIO call; don't expect it to change if you just call this
|
2024-03-13 10:29:17 -06:00
|
|
|
* query function in a tight loop.
|
|
|
|
*
|
2024-03-14 17:32:50 -06:00
|
|
|
* \param context the SDL_IOStream to query.
|
|
|
|
* \returns an SDL_IOStatus enum with the current state.
|
2024-03-13 10:29:17 -06:00
|
|
|
*
|
|
|
|
* \threadsafety This function should not be called at the same time that
|
2024-03-14 17:32:50 -06:00
|
|
|
* another thread is operating on the same SDL_IOStream.
|
2024-03-13 10:29:17 -06:00
|
|
|
*
|
|
|
|
* \since This function is available since SDL 3.0.0.
|
|
|
|
*/
|
2024-03-15 13:34:29 -06:00
|
|
|
extern DECLSPEC SDL_IOStatus SDLCALL SDL_GetIOStatus(SDL_IOStream *context);
|
2024-03-13 10:29:17 -06:00
|
|
|
|
2015-06-21 09:33:46 -06:00
|
|
|
/**
|
2024-03-14 17:32:50 -06:00
|
|
|
* Use this function to get the size of the data stream in an SDL_IOStream.
|
2021-03-21 12:18:39 -06:00
|
|
|
*
|
2024-03-14 17:32:50 -06:00
|
|
|
* \param context the SDL_IOStream to get the size of the data stream from
|
|
|
|
* \returns the size of the data stream in the SDL_IOStream on success or a
|
2023-08-07 21:37:14 -06:00
|
|
|
* negative error code on failure; call SDL_GetError() for more
|
|
|
|
* information.
|
2021-03-21 12:18:39 -06:00
|
|
|
*
|
2022-11-22 15:40:14 -07:00
|
|
|
* \since This function is available since SDL 3.0.0.
|
Fixed bug 4526 - replace SDL_RW* macros with functions for using in bindings
ace
I got this bug in SDL_ttf:
https://bugzilla.libsdl.org/show_bug.cgi?id=4524
Sylvain proposed solution:
SDL_RWseek(RWops, 0, RW_SEEK_SET);
And it works, but i can use it my project, because it written in C# with SDL2-CS wrapper and there not export for macroses:
#define SDL_RWsize(ctx) (ctx)->size(ctx)
#define SDL_RWseek(ctx, offset, whence) (ctx)->seek(ctx, offset, whence)
#define SDL_RWtell(ctx) (ctx)->seek(ctx, 0, RW_SEEK_CUR)
#define SDL_RWread(ctx, ptr, size, n) (ctx)->read(ctx, ptr, size, n)
#define SDL_RWwrite(ctx, ptr, size, n) (ctx)->write(ctx, ptr, size, n)
#define SDL_RWclose(ctx) (ctx)->close(ctx)
Therefore, I suggest replacing this macros with functions so that they can be exported and used in bindings
2019-06-08 18:43:23 -06:00
|
|
|
*/
|
2024-03-14 17:32:50 -06:00
|
|
|
extern DECLSPEC Sint64 SDLCALL SDL_SizeIO(SDL_IOStream *context);
|
Fixed bug 4526 - replace SDL_RW* macros with functions for using in bindings
ace
I got this bug in SDL_ttf:
https://bugzilla.libsdl.org/show_bug.cgi?id=4524
Sylvain proposed solution:
SDL_RWseek(RWops, 0, RW_SEEK_SET);
And it works, but i can use it my project, because it written in C# with SDL2-CS wrapper and there not export for macroses:
#define SDL_RWsize(ctx) (ctx)->size(ctx)
#define SDL_RWseek(ctx, offset, whence) (ctx)->seek(ctx, offset, whence)
#define SDL_RWtell(ctx) (ctx)->seek(ctx, 0, RW_SEEK_CUR)
#define SDL_RWread(ctx, ptr, size, n) (ctx)->read(ctx, ptr, size, n)
#define SDL_RWwrite(ctx, ptr, size, n) (ctx)->write(ctx, ptr, size, n)
#define SDL_RWclose(ctx) (ctx)->close(ctx)
Therefore, I suggest replacing this macros with functions so that they can be exported and used in bindings
2019-06-08 18:43:23 -06:00
|
|
|
|
|
|
|
/**
|
2024-03-14 17:32:50 -06:00
|
|
|
* Seek within an SDL_IOStream data stream.
|
2021-03-21 12:18:39 -06:00
|
|
|
*
|
|
|
|
* This function seeks to byte `offset`, relative to `whence`.
|
|
|
|
*
|
|
|
|
* `whence` may be any of the following values:
|
|
|
|
*
|
2024-03-14 17:32:50 -06:00
|
|
|
* - `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
|
2015-06-21 09:33:46 -06:00
|
|
|
*
|
2021-03-21 12:18:39 -06:00
|
|
|
* If this stream can not seek, it will return -1.
|
|
|
|
*
|
2024-03-14 17:32:50 -06:00
|
|
|
* \param context a pointer to an SDL_IOStream structure
|
2021-03-21 12:18:39 -06:00
|
|
|
* \param offset an offset in bytes, relative to **whence** location; can be
|
|
|
|
* negative
|
2024-03-14 17:32:50 -06:00
|
|
|
* \param whence any of `SDL_IO_SEEK_SET`, `SDL_IO_SEEK_CUR`,
|
|
|
|
* `SDL_IO_SEEK_END`
|
2023-08-07 21:37:14 -06:00
|
|
|
* \returns the final offset in the data stream after the seek or a negative
|
|
|
|
* error code on failure; call SDL_GetError() for more information.
|
2021-03-21 12:18:39 -06:00
|
|
|
*
|
2022-11-22 15:40:14 -07:00
|
|
|
* \since This function is available since SDL 3.0.0.
|
2021-10-26 19:36:05 -06:00
|
|
|
*
|
2024-03-14 17:32:50 -06:00
|
|
|
* \sa SDL_IOFromConstMem
|
|
|
|
* \sa SDL_IOFromFile
|
|
|
|
* \sa SDL_IOFromMem
|
|
|
|
* \sa SDL_ReadIO
|
|
|
|
* \sa SDL_TellIO
|
|
|
|
* \sa SDL_WriteIO
|
2015-06-21 09:33:46 -06:00
|
|
|
*/
|
2024-03-14 17:32:50 -06:00
|
|
|
extern DECLSPEC Sint64 SDLCALL SDL_SeekIO(SDL_IOStream *context, Sint64 offset, int whence);
|
Fixed bug 4526 - replace SDL_RW* macros with functions for using in bindings
ace
I got this bug in SDL_ttf:
https://bugzilla.libsdl.org/show_bug.cgi?id=4524
Sylvain proposed solution:
SDL_RWseek(RWops, 0, RW_SEEK_SET);
And it works, but i can use it my project, because it written in C# with SDL2-CS wrapper and there not export for macroses:
#define SDL_RWsize(ctx) (ctx)->size(ctx)
#define SDL_RWseek(ctx, offset, whence) (ctx)->seek(ctx, offset, whence)
#define SDL_RWtell(ctx) (ctx)->seek(ctx, 0, RW_SEEK_CUR)
#define SDL_RWread(ctx, ptr, size, n) (ctx)->read(ctx, ptr, size, n)
#define SDL_RWwrite(ctx, ptr, size, n) (ctx)->write(ctx, ptr, size, n)
#define SDL_RWclose(ctx) (ctx)->close(ctx)
Therefore, I suggest replacing this macros with functions so that they can be exported and used in bindings
2019-06-08 18:43:23 -06:00
|
|
|
|
|
|
|
/**
|
2024-03-14 17:32:50 -06:00
|
|
|
* Determine the current read/write offset in an SDL_IOStream data stream.
|
2021-03-21 12:18:39 -06:00
|
|
|
*
|
2024-03-14 17:32:50 -06:00
|
|
|
* SDL_TellIO is actually a wrapper function that calls the SDL_IOStream's `seek`
|
|
|
|
* method, with an offset of 0 bytes from `SDL_IO_SEEK_CUR`, to simplify
|
2021-03-21 12:18:39 -06:00
|
|
|
* application development.
|
|
|
|
*
|
2024-03-14 17:32:50 -06:00
|
|
|
* \param context an SDL_IOStream data stream object from which to get the
|
2023-08-07 21:37:14 -06:00
|
|
|
* current offset
|
2021-03-21 12:18:39 -06:00
|
|
|
* \returns the current offset in the stream, or -1 if the information can not
|
|
|
|
* be determined.
|
|
|
|
*
|
2022-11-22 15:40:14 -07:00
|
|
|
* \since This function is available since SDL 3.0.0.
|
2021-10-26 19:36:05 -06:00
|
|
|
*
|
2024-03-14 17:32:50 -06:00
|
|
|
* \sa SDL_IOFromConstMem
|
|
|
|
* \sa SDL_IOFromFile
|
|
|
|
* \sa SDL_IOFromMem
|
|
|
|
* \sa SDL_ReadIO
|
|
|
|
* \sa SDL_SeekIO
|
|
|
|
* \sa SDL_WriteIO
|
Fixed bug 4526 - replace SDL_RW* macros with functions for using in bindings
ace
I got this bug in SDL_ttf:
https://bugzilla.libsdl.org/show_bug.cgi?id=4524
Sylvain proposed solution:
SDL_RWseek(RWops, 0, RW_SEEK_SET);
And it works, but i can use it my project, because it written in C# with SDL2-CS wrapper and there not export for macroses:
#define SDL_RWsize(ctx) (ctx)->size(ctx)
#define SDL_RWseek(ctx, offset, whence) (ctx)->seek(ctx, offset, whence)
#define SDL_RWtell(ctx) (ctx)->seek(ctx, 0, RW_SEEK_CUR)
#define SDL_RWread(ctx, ptr, size, n) (ctx)->read(ctx, ptr, size, n)
#define SDL_RWwrite(ctx, ptr, size, n) (ctx)->write(ctx, ptr, size, n)
#define SDL_RWclose(ctx) (ctx)->close(ctx)
Therefore, I suggest replacing this macros with functions so that they can be exported and used in bindings
2019-06-08 18:43:23 -06:00
|
|
|
*/
|
2024-03-14 17:32:50 -06:00
|
|
|
extern DECLSPEC Sint64 SDLCALL SDL_TellIO(SDL_IOStream *context);
|
2015-06-21 09:33:46 -06:00
|
|
|
|
Fixed bug 4526 - replace SDL_RW* macros with functions for using in bindings
ace
I got this bug in SDL_ttf:
https://bugzilla.libsdl.org/show_bug.cgi?id=4524
Sylvain proposed solution:
SDL_RWseek(RWops, 0, RW_SEEK_SET);
And it works, but i can use it my project, because it written in C# with SDL2-CS wrapper and there not export for macroses:
#define SDL_RWsize(ctx) (ctx)->size(ctx)
#define SDL_RWseek(ctx, offset, whence) (ctx)->seek(ctx, offset, whence)
#define SDL_RWtell(ctx) (ctx)->seek(ctx, 0, RW_SEEK_CUR)
#define SDL_RWread(ctx, ptr, size, n) (ctx)->read(ctx, ptr, size, n)
#define SDL_RWwrite(ctx, ptr, size, n) (ctx)->write(ctx, ptr, size, n)
#define SDL_RWclose(ctx) (ctx)->close(ctx)
Therefore, I suggest replacing this macros with functions so that they can be exported and used in bindings
2019-06-08 18:43:23 -06:00
|
|
|
/**
|
2021-03-21 12:18:39 -06:00
|
|
|
* Read from a data source.
|
|
|
|
*
|
2022-12-14 13:42:54 -07:00
|
|
|
* This function reads up `size` bytes from the data source to the area
|
2023-01-25 10:58:29 -07:00
|
|
|
* pointed at by `ptr`. This function may read less bytes than requested. It
|
|
|
|
* will return zero when the data stream is completely read, or -1 on error.
|
|
|
|
* For streams that support non-blocking operation, if nothing was read
|
|
|
|
* because it would require blocking, this function returns -2 to distinguish
|
|
|
|
* that this is not an error or end-of-file, and the caller can try again
|
|
|
|
* later.
|
Fixed bug 4526 - replace SDL_RW* macros with functions for using in bindings
ace
I got this bug in SDL_ttf:
https://bugzilla.libsdl.org/show_bug.cgi?id=4524
Sylvain proposed solution:
SDL_RWseek(RWops, 0, RW_SEEK_SET);
And it works, but i can use it my project, because it written in C# with SDL2-CS wrapper and there not export for macroses:
#define SDL_RWsize(ctx) (ctx)->size(ctx)
#define SDL_RWseek(ctx, offset, whence) (ctx)->seek(ctx, offset, whence)
#define SDL_RWtell(ctx) (ctx)->seek(ctx, 0, RW_SEEK_CUR)
#define SDL_RWread(ctx, ptr, size, n) (ctx)->read(ctx, ptr, size, n)
#define SDL_RWwrite(ctx, ptr, size, n) (ctx)->write(ctx, ptr, size, n)
#define SDL_RWclose(ctx) (ctx)->close(ctx)
Therefore, I suggest replacing this macros with functions so that they can be exported and used in bindings
2019-06-08 18:43:23 -06:00
|
|
|
*
|
2024-03-14 17:32:50 -06:00
|
|
|
* \param context a pointer to an SDL_IOStream structure
|
2021-03-21 12:18:39 -06:00
|
|
|
* \param ptr a pointer to a buffer to read data into
|
2022-12-14 13:42:54 -07:00
|
|
|
* \param size the number of bytes to read from the data source.
|
2023-08-06 14:51:03 -06:00
|
|
|
* \returns the number of bytes read, or 0 on end of file or other error.
|
2021-03-21 12:18:39 -06:00
|
|
|
*
|
2022-11-22 15:40:14 -07:00
|
|
|
* \since This function is available since SDL 3.0.0.
|
2021-10-26 19:36:05 -06:00
|
|
|
*
|
2024-03-14 17:32:50 -06:00
|
|
|
* \sa SDL_IOFromConstMem
|
|
|
|
* \sa SDL_IOFromFile
|
|
|
|
* \sa SDL_IOFromMem
|
|
|
|
* \sa SDL_SeekIO
|
|
|
|
* \sa SDL_WriteIO
|
Fixed bug 4526 - replace SDL_RW* macros with functions for using in bindings
ace
I got this bug in SDL_ttf:
https://bugzilla.libsdl.org/show_bug.cgi?id=4524
Sylvain proposed solution:
SDL_RWseek(RWops, 0, RW_SEEK_SET);
And it works, but i can use it my project, because it written in C# with SDL2-CS wrapper and there not export for macroses:
#define SDL_RWsize(ctx) (ctx)->size(ctx)
#define SDL_RWseek(ctx, offset, whence) (ctx)->seek(ctx, offset, whence)
#define SDL_RWtell(ctx) (ctx)->seek(ctx, 0, RW_SEEK_CUR)
#define SDL_RWread(ctx, ptr, size, n) (ctx)->read(ctx, ptr, size, n)
#define SDL_RWwrite(ctx, ptr, size, n) (ctx)->write(ctx, ptr, size, n)
#define SDL_RWclose(ctx) (ctx)->close(ctx)
Therefore, I suggest replacing this macros with functions so that they can be exported and used in bindings
2019-06-08 18:43:23 -06:00
|
|
|
*/
|
2024-03-14 17:32:50 -06:00
|
|
|
extern DECLSPEC size_t SDLCALL SDL_ReadIO(SDL_IOStream *context, void *ptr, size_t size);
|
Fixed bug 4526 - replace SDL_RW* macros with functions for using in bindings
ace
I got this bug in SDL_ttf:
https://bugzilla.libsdl.org/show_bug.cgi?id=4524
Sylvain proposed solution:
SDL_RWseek(RWops, 0, RW_SEEK_SET);
And it works, but i can use it my project, because it written in C# with SDL2-CS wrapper and there not export for macroses:
#define SDL_RWsize(ctx) (ctx)->size(ctx)
#define SDL_RWseek(ctx, offset, whence) (ctx)->seek(ctx, offset, whence)
#define SDL_RWtell(ctx) (ctx)->seek(ctx, 0, RW_SEEK_CUR)
#define SDL_RWread(ctx, ptr, size, n) (ctx)->read(ctx, ptr, size, n)
#define SDL_RWwrite(ctx, ptr, size, n) (ctx)->write(ctx, ptr, size, n)
#define SDL_RWclose(ctx) (ctx)->close(ctx)
Therefore, I suggest replacing this macros with functions so that they can be exported and used in bindings
2019-06-08 18:43:23 -06:00
|
|
|
|
|
|
|
/**
|
2024-03-14 17:32:50 -06:00
|
|
|
* Write to an SDL_IOStream data stream.
|
2021-03-21 12:18:39 -06:00
|
|
|
*
|
2023-01-25 10:58:29 -07:00
|
|
|
* This function writes exactly `size` bytes from the area pointed at by `ptr`
|
|
|
|
* to the stream. If this fails for any reason, it'll return less than `size`
|
|
|
|
* to demonstrate how far the write progressed. On success, it returns `num`.
|
2022-12-14 13:42:54 -07:00
|
|
|
*
|
2023-01-25 10:58:29 -07:00
|
|
|
* On error, this function still attempts to write as much as possible, so it
|
|
|
|
* might return a positive value less than the requested write size. If the
|
|
|
|
* function failed to write anything and there was an actual error, it will
|
|
|
|
* return -1. For streams that support non-blocking operation, if nothing was
|
|
|
|
* written because it would require blocking, this function returns -2 to
|
|
|
|
* distinguish that this is not an error and the caller can try again later.
|
2021-03-21 12:18:39 -06:00
|
|
|
*
|
2023-01-25 10:58:29 -07:00
|
|
|
* It is an error to specify a negative `size`, but this parameter is signed
|
|
|
|
* so you definitely cannot overflow the return value on a successful run with
|
|
|
|
* enormous amounts of data.
|
2021-11-18 13:30:36 -07:00
|
|
|
*
|
2024-03-14 17:32:50 -06:00
|
|
|
* \param context a pointer to an SDL_IOStream structure
|
2021-03-21 12:18:39 -06:00
|
|
|
* \param ptr a pointer to a buffer containing data to write
|
2022-12-14 13:42:54 -07:00
|
|
|
* \param size the number of bytes to write
|
|
|
|
* \returns the number of bytes written, which will be less than `num` on
|
2021-03-21 12:18:39 -06:00
|
|
|
* error; call SDL_GetError() for more information.
|
|
|
|
*
|
2022-11-22 15:40:14 -07:00
|
|
|
* \since This function is available since SDL 3.0.0.
|
2021-10-26 19:36:05 -06:00
|
|
|
*
|
2024-03-14 17:32:50 -06:00
|
|
|
* \sa SDL_IOFromConstMem
|
|
|
|
* \sa SDL_IOFromFile
|
|
|
|
* \sa SDL_IOFromMem
|
|
|
|
* \sa SDL_IOprintf
|
|
|
|
* \sa SDL_ReadIO
|
|
|
|
* \sa SDL_SeekIO
|
Fixed bug 4526 - replace SDL_RW* macros with functions for using in bindings
ace
I got this bug in SDL_ttf:
https://bugzilla.libsdl.org/show_bug.cgi?id=4524
Sylvain proposed solution:
SDL_RWseek(RWops, 0, RW_SEEK_SET);
And it works, but i can use it my project, because it written in C# with SDL2-CS wrapper and there not export for macroses:
#define SDL_RWsize(ctx) (ctx)->size(ctx)
#define SDL_RWseek(ctx, offset, whence) (ctx)->seek(ctx, offset, whence)
#define SDL_RWtell(ctx) (ctx)->seek(ctx, 0, RW_SEEK_CUR)
#define SDL_RWread(ctx, ptr, size, n) (ctx)->read(ctx, ptr, size, n)
#define SDL_RWwrite(ctx, ptr, size, n) (ctx)->write(ctx, ptr, size, n)
#define SDL_RWclose(ctx) (ctx)->close(ctx)
Therefore, I suggest replacing this macros with functions so that they can be exported and used in bindings
2019-06-08 18:43:23 -06:00
|
|
|
*/
|
2024-03-14 17:32:50 -06:00
|
|
|
extern DECLSPEC size_t SDLCALL SDL_WriteIO(SDL_IOStream *context, const void *ptr, size_t size);
|
Fixed bug 4526 - replace SDL_RW* macros with functions for using in bindings
ace
I got this bug in SDL_ttf:
https://bugzilla.libsdl.org/show_bug.cgi?id=4524
Sylvain proposed solution:
SDL_RWseek(RWops, 0, RW_SEEK_SET);
And it works, but i can use it my project, because it written in C# with SDL2-CS wrapper and there not export for macroses:
#define SDL_RWsize(ctx) (ctx)->size(ctx)
#define SDL_RWseek(ctx, offset, whence) (ctx)->seek(ctx, offset, whence)
#define SDL_RWtell(ctx) (ctx)->seek(ctx, 0, RW_SEEK_CUR)
#define SDL_RWread(ctx, ptr, size, n) (ctx)->read(ctx, ptr, size, n)
#define SDL_RWwrite(ctx, ptr, size, n) (ctx)->write(ctx, ptr, size, n)
#define SDL_RWclose(ctx) (ctx)->close(ctx)
Therefore, I suggest replacing this macros with functions so that they can be exported and used in bindings
2019-06-08 18:43:23 -06:00
|
|
|
|
2023-11-04 14:57:16 -06:00
|
|
|
/**
|
2024-03-14 17:32:50 -06:00
|
|
|
* Print to an SDL_IOStream data stream.
|
2023-11-04 14:57:16 -06:00
|
|
|
*
|
|
|
|
* This function does formatted printing to the stream.
|
|
|
|
*
|
2024-03-14 17:32:50 -06:00
|
|
|
* \param context a pointer to an SDL_IOStream structure
|
2023-11-04 14:57:16 -06:00
|
|
|
* \param fmt a printf() style format string
|
2023-11-04 20:18:38 -06:00
|
|
|
* \param ... additional parameters matching % tokens in the `fmt` string, if
|
|
|
|
* any
|
|
|
|
* \returns the number of bytes written, or 0 on error; call SDL_GetError()
|
|
|
|
* for more information.
|
2023-11-04 14:57:16 -06:00
|
|
|
*
|
|
|
|
* \since This function is available since SDL 3.0.0.
|
|
|
|
*
|
2024-03-14 17:32:50 -06:00
|
|
|
* \sa SDL_IOFromConstMem
|
|
|
|
* \sa SDL_IOFromFile
|
|
|
|
* \sa SDL_IOFromMem
|
|
|
|
* \sa SDL_ReadIO
|
|
|
|
* \sa SDL_SeekIO
|
|
|
|
* \sa SDL_WriteIO
|
2023-11-04 14:57:16 -06:00
|
|
|
*/
|
2024-03-14 17:32:50 -06:00
|
|
|
extern DECLSPEC size_t SDLCALL SDL_IOprintf(SDL_IOStream *context, SDL_PRINTF_FORMAT_STRING const char *fmt, ...) SDL_PRINTF_VARARG_FUNC(2);
|
2023-11-04 14:57:16 -06:00
|
|
|
|
|
|
|
/**
|
2024-03-14 17:32:50 -06:00
|
|
|
* Print to an SDL_IOStream data stream.
|
2023-11-04 14:57:16 -06:00
|
|
|
*
|
|
|
|
* This function does formatted printing to the stream.
|
|
|
|
*
|
2024-03-14 17:32:50 -06:00
|
|
|
* \param context a pointer to an SDL_IOStream structure
|
2023-11-04 14:57:16 -06:00
|
|
|
* \param fmt a printf() style format string
|
|
|
|
* \param ap a variable argument list
|
2023-11-04 20:18:38 -06:00
|
|
|
* \returns the number of bytes written, or 0 on error; call SDL_GetError()
|
|
|
|
* for more information.
|
2023-11-04 14:57:16 -06:00
|
|
|
*
|
|
|
|
* \since This function is available since SDL 3.0.0.
|
|
|
|
*
|
2024-03-14 17:32:50 -06:00
|
|
|
* \sa SDL_IOFromConstMem
|
|
|
|
* \sa SDL_IOFromFile
|
|
|
|
* \sa SDL_IOFromMem
|
|
|
|
* \sa SDL_ReadIO
|
|
|
|
* \sa SDL_SeekIO
|
|
|
|
* \sa SDL_WriteIO
|
2023-11-04 14:57:16 -06:00
|
|
|
*/
|
2024-03-14 17:32:50 -06:00
|
|
|
extern DECLSPEC size_t SDLCALL SDL_IOvprintf(SDL_IOStream *context, SDL_PRINTF_FORMAT_STRING const char *fmt, va_list ap) SDL_PRINTF_VARARG_FUNCV(2);
|
2023-11-04 14:57:16 -06:00
|
|
|
|
2017-08-09 12:58:38 -06:00
|
|
|
/**
|
2021-03-21 12:18:39 -06:00
|
|
|
* Load all the data from an SDL data stream.
|
2017-08-09 12:58:38 -06:00
|
|
|
*
|
2021-03-21 12:18:39 -06:00
|
|
|
* The data is allocated with a zero byte at the end (null terminated) for
|
|
|
|
* convenience. This extra byte is not included in the value reported via
|
|
|
|
* `datasize`.
|
2017-08-09 12:58:38 -06:00
|
|
|
*
|
2021-03-21 12:18:39 -06:00
|
|
|
* The data should be freed with SDL_free().
|
2017-08-09 12:58:38 -06:00
|
|
|
*
|
2024-03-14 17:32:50 -06:00
|
|
|
* \param src the SDL_IOStream to read all available data from
|
2021-03-21 12:18:39 -06:00
|
|
|
* \param datasize if not NULL, will store the number of bytes read
|
2024-03-14 21:14:46 -06:00
|
|
|
* \param closeio if SDL_TRUE, calls SDL_CloseIO() on `src` before returning,
|
2023-07-09 14:50:16 -06:00
|
|
|
* even in the case of an error
|
2021-03-21 12:18:39 -06:00
|
|
|
* \returns the data, or NULL if there was an error.
|
2021-10-26 19:36:05 -06:00
|
|
|
*
|
2022-11-22 15:40:14 -07:00
|
|
|
* \since This function is available since SDL 3.0.0.
|
2017-08-09 12:58:38 -06:00
|
|
|
*/
|
2024-03-14 21:14:46 -06:00
|
|
|
extern DECLSPEC void *SDLCALL SDL_LoadFile_IO(SDL_IOStream *src, size_t *datasize, SDL_bool closeio);
|
2017-08-09 12:58:38 -06:00
|
|
|
|
|
|
|
/**
|
2021-03-21 12:18:39 -06:00
|
|
|
* Load all the data from a file path.
|
Fixed bug 4526 - replace SDL_RW* macros with functions for using in bindings
ace
I got this bug in SDL_ttf:
https://bugzilla.libsdl.org/show_bug.cgi?id=4524
Sylvain proposed solution:
SDL_RWseek(RWops, 0, RW_SEEK_SET);
And it works, but i can use it my project, because it written in C# with SDL2-CS wrapper and there not export for macroses:
#define SDL_RWsize(ctx) (ctx)->size(ctx)
#define SDL_RWseek(ctx, offset, whence) (ctx)->seek(ctx, offset, whence)
#define SDL_RWtell(ctx) (ctx)->seek(ctx, 0, RW_SEEK_CUR)
#define SDL_RWread(ctx, ptr, size, n) (ctx)->read(ctx, ptr, size, n)
#define SDL_RWwrite(ctx, ptr, size, n) (ctx)->write(ctx, ptr, size, n)
#define SDL_RWclose(ctx) (ctx)->close(ctx)
Therefore, I suggest replacing this macros with functions so that they can be exported and used in bindings
2019-06-08 18:43:23 -06:00
|
|
|
*
|
2021-03-21 12:18:39 -06:00
|
|
|
* The data is allocated with a zero byte at the end (null terminated) for
|
|
|
|
* convenience. This extra byte is not included in the value reported via
|
|
|
|
* `datasize`.
|
Fixed bug 4526 - replace SDL_RW* macros with functions for using in bindings
ace
I got this bug in SDL_ttf:
https://bugzilla.libsdl.org/show_bug.cgi?id=4524
Sylvain proposed solution:
SDL_RWseek(RWops, 0, RW_SEEK_SET);
And it works, but i can use it my project, because it written in C# with SDL2-CS wrapper and there not export for macroses:
#define SDL_RWsize(ctx) (ctx)->size(ctx)
#define SDL_RWseek(ctx, offset, whence) (ctx)->seek(ctx, offset, whence)
#define SDL_RWtell(ctx) (ctx)->seek(ctx, 0, RW_SEEK_CUR)
#define SDL_RWread(ctx, ptr, size, n) (ctx)->read(ctx, ptr, size, n)
#define SDL_RWwrite(ctx, ptr, size, n) (ctx)->write(ctx, ptr, size, n)
#define SDL_RWclose(ctx) (ctx)->close(ctx)
Therefore, I suggest replacing this macros with functions so that they can be exported and used in bindings
2019-06-08 18:43:23 -06:00
|
|
|
*
|
2021-03-21 12:18:39 -06:00
|
|
|
* The data should be freed with SDL_free().
|
Fixed bug 4526 - replace SDL_RW* macros with functions for using in bindings
ace
I got this bug in SDL_ttf:
https://bugzilla.libsdl.org/show_bug.cgi?id=4524
Sylvain proposed solution:
SDL_RWseek(RWops, 0, RW_SEEK_SET);
And it works, but i can use it my project, because it written in C# with SDL2-CS wrapper and there not export for macroses:
#define SDL_RWsize(ctx) (ctx)->size(ctx)
#define SDL_RWseek(ctx, offset, whence) (ctx)->seek(ctx, offset, whence)
#define SDL_RWtell(ctx) (ctx)->seek(ctx, 0, RW_SEEK_CUR)
#define SDL_RWread(ctx, ptr, size, n) (ctx)->read(ctx, ptr, size, n)
#define SDL_RWwrite(ctx, ptr, size, n) (ctx)->write(ctx, ptr, size, n)
#define SDL_RWclose(ctx) (ctx)->close(ctx)
Therefore, I suggest replacing this macros with functions so that they can be exported and used in bindings
2019-06-08 18:43:23 -06:00
|
|
|
*
|
2021-03-21 12:18:39 -06:00
|
|
|
* \param file the path to read all available data from
|
|
|
|
* \param datasize if not NULL, will store the number of bytes read
|
|
|
|
* \returns the data, or NULL if there was an error.
|
2021-10-26 19:36:05 -06:00
|
|
|
*
|
2022-11-22 15:40:14 -07:00
|
|
|
* \since This function is available since SDL 3.0.0.
|
2017-08-09 12:58:38 -06:00
|
|
|
*/
|
Fixed bug 4526 - replace SDL_RW* macros with functions for using in bindings
ace
I got this bug in SDL_ttf:
https://bugzilla.libsdl.org/show_bug.cgi?id=4524
Sylvain proposed solution:
SDL_RWseek(RWops, 0, RW_SEEK_SET);
And it works, but i can use it my project, because it written in C# with SDL2-CS wrapper and there not export for macroses:
#define SDL_RWsize(ctx) (ctx)->size(ctx)
#define SDL_RWseek(ctx, offset, whence) (ctx)->seek(ctx, offset, whence)
#define SDL_RWtell(ctx) (ctx)->seek(ctx, 0, RW_SEEK_CUR)
#define SDL_RWread(ctx, ptr, size, n) (ctx)->read(ctx, ptr, size, n)
#define SDL_RWwrite(ctx, ptr, size, n) (ctx)->write(ctx, ptr, size, n)
#define SDL_RWclose(ctx) (ctx)->close(ctx)
Therefore, I suggest replacing this macros with functions so that they can be exported and used in bindings
2019-06-08 18:43:23 -06:00
|
|
|
extern DECLSPEC void *SDLCALL SDL_LoadFile(const char *file, size_t *datasize);
|
2017-08-09 12:58:38 -06:00
|
|
|
|
2015-06-21 09:33:46 -06:00
|
|
|
/**
|
|
|
|
* \name Read endian functions
|
|
|
|
*
|
|
|
|
* Read an item of the specified endianness and return in native format.
|
|
|
|
*/
|
|
|
|
/* @{ */
|
2021-10-08 18:22:48 -06:00
|
|
|
|
|
|
|
/**
|
2024-03-14 17:32:50 -06:00
|
|
|
* Use this function to read a byte from an SDL_IOStream.
|
2021-10-08 18:22:48 -06:00
|
|
|
*
|
2024-03-14 17:32:50 -06:00
|
|
|
* \param src the SDL_IOStream to read from
|
2023-08-06 14:51:03 -06:00
|
|
|
* \param value a pointer filled in with the data read
|
2023-08-07 21:37:14 -06:00
|
|
|
* \returns SDL_TRUE on success or SDL_FALSE on failure; call SDL_GetError()
|
|
|
|
* for more information.
|
2021-10-08 18:22:48 -06:00
|
|
|
*
|
2022-11-22 15:40:14 -07:00
|
|
|
* \since This function is available since SDL 3.0.0.
|
2023-08-06 14:51:03 -06:00
|
|
|
*/
|
2024-03-14 17:32:50 -06:00
|
|
|
extern DECLSPEC SDL_bool SDLCALL SDL_ReadU8(SDL_IOStream *src, Uint8 *value);
|
2023-08-06 14:51:03 -06:00
|
|
|
|
|
|
|
/**
|
2024-03-14 17:32:50 -06:00
|
|
|
* Use this function to read 16 bits of little-endian data from an SDL_IOStream
|
2023-08-06 14:51:03 -06:00
|
|
|
* and return in native format.
|
2021-10-08 18:22:48 -06:00
|
|
|
*
|
2023-08-06 14:51:03 -06:00
|
|
|
* SDL byteswaps the data only if necessary, so the data returned will be in
|
|
|
|
* the native byte order.
|
|
|
|
*
|
|
|
|
* \param src the stream from which to read data
|
|
|
|
* \param value a pointer filled in with the data read
|
2023-08-07 21:37:14 -06:00
|
|
|
* \returns SDL_TRUE on successful write, SDL_FALSE on failure; call
|
|
|
|
* SDL_GetError() for more information.
|
2023-08-06 14:51:03 -06:00
|
|
|
*
|
|
|
|
* \since This function is available since SDL 3.0.0.
|
2021-10-08 18:22:48 -06:00
|
|
|
*/
|
2024-03-14 17:32:50 -06:00
|
|
|
extern DECLSPEC SDL_bool SDLCALL SDL_ReadU16LE(SDL_IOStream *src, Uint16 *value);
|
2021-10-08 18:22:48 -06:00
|
|
|
|
|
|
|
/**
|
2024-03-14 17:32:50 -06:00
|
|
|
* Use this function to read 16 bits of little-endian data from an SDL_IOStream
|
2021-10-08 18:22:48 -06:00
|
|
|
* and return in native format.
|
|
|
|
*
|
|
|
|
* SDL byteswaps the data only if necessary, so the data returned will be in
|
|
|
|
* the native byte order.
|
|
|
|
*
|
|
|
|
* \param src the stream from which to read data
|
2023-08-06 14:51:03 -06:00
|
|
|
* \param value a pointer filled in with the data read
|
2023-08-07 21:37:14 -06:00
|
|
|
* \returns SDL_TRUE on successful write, SDL_FALSE on failure; call
|
|
|
|
* SDL_GetError() for more information.
|
2021-10-08 18:22:48 -06:00
|
|
|
*
|
2022-11-22 15:40:14 -07:00
|
|
|
* \since This function is available since SDL 3.0.0.
|
2021-10-08 18:22:48 -06:00
|
|
|
*/
|
2024-03-14 17:32:50 -06:00
|
|
|
extern DECLSPEC SDL_bool SDLCALL SDL_ReadS16LE(SDL_IOStream *src, Sint16 *value);
|
2021-10-08 18:22:48 -06:00
|
|
|
|
|
|
|
/**
|
2024-03-14 17:32:50 -06:00
|
|
|
* Use this function to read 16 bits of big-endian data from an SDL_IOStream and
|
2021-10-08 18:22:48 -06:00
|
|
|
* return in native format.
|
|
|
|
*
|
|
|
|
* SDL byteswaps the data only if necessary, so the data returned will be in
|
|
|
|
* the native byte order.
|
|
|
|
*
|
|
|
|
* \param src the stream from which to read data
|
2023-08-06 14:51:03 -06:00
|
|
|
* \param value a pointer filled in with the data read
|
2023-08-07 21:37:14 -06:00
|
|
|
* \returns SDL_TRUE on successful write, SDL_FALSE on failure; call
|
|
|
|
* SDL_GetError() for more information.
|
2021-10-08 18:22:48 -06:00
|
|
|
*
|
2022-11-22 15:40:14 -07:00
|
|
|
* \since This function is available since SDL 3.0.0.
|
2021-10-08 18:22:48 -06:00
|
|
|
*/
|
2024-03-14 17:32:50 -06:00
|
|
|
extern DECLSPEC SDL_bool SDLCALL SDL_ReadU16BE(SDL_IOStream *src, Uint16 *value);
|
2023-08-06 14:51:03 -06:00
|
|
|
|
|
|
|
/**
|
2024-03-14 17:32:50 -06:00
|
|
|
* Use this function to read 16 bits of big-endian data from an SDL_IOStream and
|
2023-08-06 14:51:03 -06:00
|
|
|
* return in native format.
|
|
|
|
*
|
|
|
|
* SDL byteswaps the data only if necessary, so the data returned will be in
|
|
|
|
* the native byte order.
|
|
|
|
*
|
|
|
|
* \param src the stream from which to read data
|
|
|
|
* \param value a pointer filled in with the data read
|
2023-08-07 21:37:14 -06:00
|
|
|
* \returns SDL_TRUE on successful write, SDL_FALSE on failure; call
|
|
|
|
* SDL_GetError() for more information.
|
2023-08-06 14:51:03 -06:00
|
|
|
*
|
|
|
|
* \since This function is available since SDL 3.0.0.
|
|
|
|
*/
|
2024-03-14 17:32:50 -06:00
|
|
|
extern DECLSPEC SDL_bool SDLCALL SDL_ReadS16BE(SDL_IOStream *src, Sint16 *value);
|
2021-10-08 18:22:48 -06:00
|
|
|
|
|
|
|
/**
|
2024-03-14 17:32:50 -06:00
|
|
|
* Use this function to read 32 bits of little-endian data from an SDL_IOStream
|
2021-10-08 18:22:48 -06:00
|
|
|
* and return in native format.
|
|
|
|
*
|
|
|
|
* SDL byteswaps the data only if necessary, so the data returned will be in
|
|
|
|
* the native byte order.
|
|
|
|
*
|
|
|
|
* \param src the stream from which to read data
|
2023-08-06 14:51:03 -06:00
|
|
|
* \param value a pointer filled in with the data read
|
2023-08-07 21:37:14 -06:00
|
|
|
* \returns SDL_TRUE on successful write, SDL_FALSE on failure; call
|
|
|
|
* SDL_GetError() for more information.
|
2021-10-08 18:22:48 -06:00
|
|
|
*
|
2022-11-22 15:40:14 -07:00
|
|
|
* \since This function is available since SDL 3.0.0.
|
2023-08-06 14:51:03 -06:00
|
|
|
*/
|
2024-03-14 17:32:50 -06:00
|
|
|
extern DECLSPEC SDL_bool SDLCALL SDL_ReadU32LE(SDL_IOStream *src, Uint32 *value);
|
2023-08-06 14:51:03 -06:00
|
|
|
|
|
|
|
/**
|
2024-03-14 17:32:50 -06:00
|
|
|
* Use this function to read 32 bits of little-endian data from an SDL_IOStream
|
2023-08-06 14:51:03 -06:00
|
|
|
* and return in native format.
|
2021-10-26 19:36:05 -06:00
|
|
|
*
|
2023-08-06 14:51:03 -06:00
|
|
|
* SDL byteswaps the data only if necessary, so the data returned will be in
|
|
|
|
* the native byte order.
|
|
|
|
*
|
|
|
|
* \param src the stream from which to read data
|
|
|
|
* \param value a pointer filled in with the data read
|
2023-08-07 21:37:14 -06:00
|
|
|
* \returns SDL_TRUE on successful write, SDL_FALSE on failure; call
|
|
|
|
* SDL_GetError() for more information.
|
2023-08-06 14:51:03 -06:00
|
|
|
*
|
|
|
|
* \since This function is available since SDL 3.0.0.
|
2021-10-08 18:22:48 -06:00
|
|
|
*/
|
2024-03-14 17:32:50 -06:00
|
|
|
extern DECLSPEC SDL_bool SDLCALL SDL_ReadS32LE(SDL_IOStream *src, Sint32 *value);
|
2021-10-08 18:22:48 -06:00
|
|
|
|
|
|
|
/**
|
2024-03-14 17:32:50 -06:00
|
|
|
* Use this function to read 32 bits of big-endian data from an SDL_IOStream and
|
2021-10-08 18:22:48 -06:00
|
|
|
* return in native format.
|
|
|
|
*
|
|
|
|
* SDL byteswaps the data only if necessary, so the data returned will be in
|
|
|
|
* the native byte order.
|
|
|
|
*
|
|
|
|
* \param src the stream from which to read data
|
2023-08-06 14:51:03 -06:00
|
|
|
* \param value a pointer filled in with the data read
|
2023-08-07 21:37:14 -06:00
|
|
|
* \returns SDL_TRUE on successful write, SDL_FALSE on failure; call
|
|
|
|
* SDL_GetError() for more information.
|
2021-10-08 18:22:48 -06:00
|
|
|
*
|
2022-11-22 15:40:14 -07:00
|
|
|
* \since This function is available since SDL 3.0.0.
|
2023-08-06 14:51:03 -06:00
|
|
|
*/
|
2024-03-14 17:32:50 -06:00
|
|
|
extern DECLSPEC SDL_bool SDLCALL SDL_ReadU32BE(SDL_IOStream *src, Uint32 *value);
|
2023-08-06 14:51:03 -06:00
|
|
|
|
|
|
|
/**
|
2024-03-14 17:32:50 -06:00
|
|
|
* Use this function to read 32 bits of big-endian data from an SDL_IOStream and
|
2023-08-06 14:51:03 -06:00
|
|
|
* return in native format.
|
2021-10-26 19:36:05 -06:00
|
|
|
*
|
2023-08-06 14:51:03 -06:00
|
|
|
* SDL byteswaps the data only if necessary, so the data returned will be in
|
|
|
|
* the native byte order.
|
|
|
|
*
|
|
|
|
* \param src the stream from which to read data
|
|
|
|
* \param value a pointer filled in with the data read
|
2023-08-07 21:37:14 -06:00
|
|
|
* \returns SDL_TRUE on successful write, SDL_FALSE on failure; call
|
|
|
|
* SDL_GetError() for more information.
|
2023-08-06 14:51:03 -06:00
|
|
|
*
|
|
|
|
* \since This function is available since SDL 3.0.0.
|
2021-10-08 18:22:48 -06:00
|
|
|
*/
|
2024-03-14 17:32:50 -06:00
|
|
|
extern DECLSPEC SDL_bool SDLCALL SDL_ReadS32BE(SDL_IOStream *src, Sint32 *value);
|
2021-10-08 18:22:48 -06:00
|
|
|
|
|
|
|
/**
|
2024-03-14 17:32:50 -06:00
|
|
|
* Use this function to read 64 bits of little-endian data from an SDL_IOStream
|
2021-10-08 18:22:48 -06:00
|
|
|
* and return in native format.
|
|
|
|
*
|
|
|
|
* SDL byteswaps the data only if necessary, so the data returned will be in
|
|
|
|
* the native byte order.
|
|
|
|
*
|
|
|
|
* \param src the stream from which to read data
|
2023-08-06 14:51:03 -06:00
|
|
|
* \param value a pointer filled in with the data read
|
2023-08-07 21:37:14 -06:00
|
|
|
* \returns SDL_TRUE on successful write, SDL_FALSE on failure; call
|
|
|
|
* SDL_GetError() for more information.
|
2021-10-08 18:22:48 -06:00
|
|
|
*
|
2022-11-22 15:40:14 -07:00
|
|
|
* \since This function is available since SDL 3.0.0.
|
2023-08-06 14:51:03 -06:00
|
|
|
*/
|
2024-03-14 17:32:50 -06:00
|
|
|
extern DECLSPEC SDL_bool SDLCALL SDL_ReadU64LE(SDL_IOStream *src, Uint64 *value);
|
2023-08-06 14:51:03 -06:00
|
|
|
|
|
|
|
/**
|
2024-03-14 17:32:50 -06:00
|
|
|
* Use this function to read 64 bits of little-endian data from an SDL_IOStream
|
2023-08-06 14:51:03 -06:00
|
|
|
* and return in native format.
|
2021-10-26 19:36:05 -06:00
|
|
|
*
|
2023-08-06 14:51:03 -06:00
|
|
|
* SDL byteswaps the data only if necessary, so the data returned will be in
|
|
|
|
* the native byte order.
|
|
|
|
*
|
|
|
|
* \param src the stream from which to read data
|
|
|
|
* \param value a pointer filled in with the data read
|
2023-08-07 21:37:14 -06:00
|
|
|
* \returns SDL_TRUE on successful write, SDL_FALSE on failure; call
|
|
|
|
* SDL_GetError() for more information.
|
2023-08-06 14:51:03 -06:00
|
|
|
*
|
|
|
|
* \since This function is available since SDL 3.0.0.
|
2021-10-08 18:22:48 -06:00
|
|
|
*/
|
2024-03-14 17:32:50 -06:00
|
|
|
extern DECLSPEC SDL_bool SDLCALL SDL_ReadS64LE(SDL_IOStream *src, Sint64 *value);
|
2021-10-08 18:22:48 -06:00
|
|
|
|
|
|
|
/**
|
2024-03-14 17:32:50 -06:00
|
|
|
* Use this function to read 64 bits of big-endian data from an SDL_IOStream and
|
2021-10-08 18:22:48 -06:00
|
|
|
* return in native format.
|
|
|
|
*
|
|
|
|
* SDL byteswaps the data only if necessary, so the data returned will be in
|
|
|
|
* the native byte order.
|
|
|
|
*
|
|
|
|
* \param src the stream from which to read data
|
2023-08-06 14:51:03 -06:00
|
|
|
* \param value a pointer filled in with the data read
|
2023-08-07 21:37:14 -06:00
|
|
|
* \returns SDL_TRUE on successful write, SDL_FALSE on failure; call
|
|
|
|
* SDL_GetError() for more information.
|
2021-10-08 18:22:48 -06:00
|
|
|
*
|
2022-11-22 15:40:14 -07:00
|
|
|
* \since This function is available since SDL 3.0.0.
|
2023-08-06 14:51:03 -06:00
|
|
|
*/
|
2024-03-14 17:32:50 -06:00
|
|
|
extern DECLSPEC SDL_bool SDLCALL SDL_ReadU64BE(SDL_IOStream *src, Uint64 *value);
|
2023-08-06 14:51:03 -06:00
|
|
|
|
|
|
|
/**
|
2024-03-14 17:32:50 -06:00
|
|
|
* Use this function to read 64 bits of big-endian data from an SDL_IOStream and
|
2023-08-06 14:51:03 -06:00
|
|
|
* return in native format.
|
2021-10-26 19:36:05 -06:00
|
|
|
*
|
2023-08-06 14:51:03 -06:00
|
|
|
* SDL byteswaps the data only if necessary, so the data returned will be in
|
|
|
|
* the native byte order.
|
|
|
|
*
|
|
|
|
* \param src the stream from which to read data
|
|
|
|
* \param value a pointer filled in with the data read
|
2023-08-07 21:37:14 -06:00
|
|
|
* \returns SDL_TRUE on successful write, SDL_FALSE on failure; call
|
|
|
|
* SDL_GetError() for more information.
|
2023-08-06 14:51:03 -06:00
|
|
|
*
|
|
|
|
* \since This function is available since SDL 3.0.0.
|
2021-10-08 18:22:48 -06:00
|
|
|
*/
|
2024-03-14 17:32:50 -06:00
|
|
|
extern DECLSPEC SDL_bool SDLCALL SDL_ReadS64BE(SDL_IOStream *src, Sint64 *value);
|
2015-06-21 09:33:46 -06:00
|
|
|
/* @} *//* Read endian functions */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \name Write endian functions
|
|
|
|
*
|
|
|
|
* Write an item of native format to the specified endianness.
|
|
|
|
*/
|
|
|
|
/* @{ */
|
2021-10-08 18:22:48 -06:00
|
|
|
|
|
|
|
/**
|
2024-03-14 17:32:50 -06:00
|
|
|
* Use this function to write a byte to an SDL_IOStream.
|
2021-10-08 18:22:48 -06:00
|
|
|
*
|
2024-03-14 17:32:50 -06:00
|
|
|
* \param dst the SDL_IOStream to write to
|
2021-10-08 18:22:48 -06:00
|
|
|
* \param value the byte value to write
|
2023-08-07 21:37:14 -06:00
|
|
|
* \returns SDL_TRUE on successful write, SDL_FALSE on failure; call
|
|
|
|
* SDL_GetError() for more information.
|
2021-10-08 18:22:48 -06:00
|
|
|
*
|
2022-11-22 15:40:14 -07:00
|
|
|
* \since This function is available since SDL 3.0.0.
|
2021-10-08 18:22:48 -06:00
|
|
|
*/
|
2024-03-14 17:32:50 -06:00
|
|
|
extern DECLSPEC SDL_bool SDLCALL SDL_WriteU8(SDL_IOStream *dst, Uint8 value);
|
2021-10-08 18:22:48 -06:00
|
|
|
|
|
|
|
/**
|
2024-03-14 17:32:50 -06:00
|
|
|
* Use this function to write 16 bits in native format to an SDL_IOStream as
|
2021-10-08 18:22:48 -06:00
|
|
|
* little-endian data.
|
|
|
|
*
|
|
|
|
* SDL byteswaps the data only if necessary, so the application always
|
|
|
|
* specifies native format, and the data written will be in little-endian
|
|
|
|
* format.
|
|
|
|
*
|
|
|
|
* \param dst the stream to which data will be written
|
|
|
|
* \param value the data to be written, in native format
|
2023-08-07 21:37:14 -06:00
|
|
|
* \returns SDL_TRUE on successful write, SDL_FALSE on failure; call
|
|
|
|
* SDL_GetError() for more information.
|
2021-10-08 18:22:48 -06:00
|
|
|
*
|
2022-11-22 15:40:14 -07:00
|
|
|
* \since This function is available since SDL 3.0.0.
|
2023-08-06 14:51:03 -06:00
|
|
|
*/
|
2024-03-14 17:32:50 -06:00
|
|
|
extern DECLSPEC SDL_bool SDLCALL SDL_WriteU16LE(SDL_IOStream *dst, Uint16 value);
|
2023-08-06 14:51:03 -06:00
|
|
|
|
|
|
|
/**
|
2024-03-14 17:32:50 -06:00
|
|
|
* Use this function to write 16 bits in native format to an SDL_IOStream as
|
2023-08-06 14:51:03 -06:00
|
|
|
* little-endian data.
|
|
|
|
*
|
|
|
|
* SDL byteswaps the data only if necessary, so the application always
|
|
|
|
* specifies native format, and the data written will be in little-endian
|
|
|
|
* format.
|
|
|
|
*
|
|
|
|
* \param dst the stream to which data will be written
|
|
|
|
* \param value the data to be written, in native format
|
2023-08-07 21:37:14 -06:00
|
|
|
* \returns SDL_TRUE on successful write, SDL_FALSE on failure; call
|
|
|
|
* SDL_GetError() for more information.
|
2021-10-26 19:36:05 -06:00
|
|
|
*
|
2023-08-06 14:51:03 -06:00
|
|
|
* \since This function is available since SDL 3.0.0.
|
2021-10-08 18:22:48 -06:00
|
|
|
*/
|
2024-03-14 17:32:50 -06:00
|
|
|
extern DECLSPEC SDL_bool SDLCALL SDL_WriteS16LE(SDL_IOStream *dst, Sint16 value);
|
2021-10-08 18:22:48 -06:00
|
|
|
|
|
|
|
/**
|
2024-03-14 17:32:50 -06:00
|
|
|
* Use this function to write 16 bits in native format to an SDL_IOStream as
|
2021-10-08 18:22:48 -06:00
|
|
|
* big-endian data.
|
|
|
|
*
|
|
|
|
* SDL byteswaps the data only if necessary, so the application always
|
|
|
|
* specifies native format, and the data written will be in big-endian format.
|
|
|
|
*
|
|
|
|
* \param dst the stream to which data will be written
|
|
|
|
* \param value the data to be written, in native format
|
2023-08-07 21:37:14 -06:00
|
|
|
* \returns SDL_TRUE on successful write, SDL_FALSE on failure; call
|
|
|
|
* SDL_GetError() for more information.
|
2021-10-08 18:22:48 -06:00
|
|
|
*
|
2022-11-22 15:40:14 -07:00
|
|
|
* \since This function is available since SDL 3.0.0.
|
2023-08-06 14:51:03 -06:00
|
|
|
*/
|
2024-03-14 17:32:50 -06:00
|
|
|
extern DECLSPEC SDL_bool SDLCALL SDL_WriteU16BE(SDL_IOStream *dst, Uint16 value);
|
2023-08-06 14:51:03 -06:00
|
|
|
|
|
|
|
/**
|
2024-03-14 17:32:50 -06:00
|
|
|
* Use this function to write 16 bits in native format to an SDL_IOStream as
|
2023-08-06 14:51:03 -06:00
|
|
|
* big-endian data.
|
2021-10-26 19:36:05 -06:00
|
|
|
*
|
2023-08-06 14:51:03 -06:00
|
|
|
* SDL byteswaps the data only if necessary, so the application always
|
|
|
|
* specifies native format, and the data written will be in big-endian format.
|
|
|
|
*
|
|
|
|
* \param dst the stream to which data will be written
|
|
|
|
* \param value the data to be written, in native format
|
2023-08-07 21:37:14 -06:00
|
|
|
* \returns SDL_TRUE on successful write, SDL_FALSE on failure; call
|
|
|
|
* SDL_GetError() for more information.
|
2023-08-06 14:51:03 -06:00
|
|
|
*
|
|
|
|
* \since This function is available since SDL 3.0.0.
|
2021-10-08 18:22:48 -06:00
|
|
|
*/
|
2024-03-14 17:32:50 -06:00
|
|
|
extern DECLSPEC SDL_bool SDLCALL SDL_WriteS16BE(SDL_IOStream *dst, Sint16 value);
|
2021-10-08 18:22:48 -06:00
|
|
|
|
|
|
|
/**
|
2024-03-14 17:32:50 -06:00
|
|
|
* Use this function to write 32 bits in native format to an SDL_IOStream as
|
2021-10-08 18:22:48 -06:00
|
|
|
* little-endian data.
|
|
|
|
*
|
|
|
|
* SDL byteswaps the data only if necessary, so the application always
|
|
|
|
* specifies native format, and the data written will be in little-endian
|
|
|
|
* format.
|
|
|
|
*
|
|
|
|
* \param dst the stream to which data will be written
|
|
|
|
* \param value the data to be written, in native format
|
2023-08-07 21:37:14 -06:00
|
|
|
* \returns SDL_TRUE on successful write, SDL_FALSE on failure; call
|
|
|
|
* SDL_GetError() for more information.
|
2021-10-08 18:22:48 -06:00
|
|
|
*
|
2022-11-22 15:40:14 -07:00
|
|
|
* \since This function is available since SDL 3.0.0.
|
2023-08-06 14:51:03 -06:00
|
|
|
*/
|
2024-03-14 17:32:50 -06:00
|
|
|
extern DECLSPEC SDL_bool SDLCALL SDL_WriteU32LE(SDL_IOStream *dst, Uint32 value);
|
2023-08-06 14:51:03 -06:00
|
|
|
|
|
|
|
/**
|
2024-03-14 17:32:50 -06:00
|
|
|
* Use this function to write 32 bits in native format to an SDL_IOStream as
|
2023-08-06 14:51:03 -06:00
|
|
|
* little-endian data.
|
|
|
|
*
|
|
|
|
* SDL byteswaps the data only if necessary, so the application always
|
|
|
|
* specifies native format, and the data written will be in little-endian
|
|
|
|
* format.
|
|
|
|
*
|
|
|
|
* \param dst the stream to which data will be written
|
|
|
|
* \param value the data to be written, in native format
|
2023-08-07 21:37:14 -06:00
|
|
|
* \returns SDL_TRUE on successful write, SDL_FALSE on failure; call
|
|
|
|
* SDL_GetError() for more information.
|
2021-10-26 19:36:05 -06:00
|
|
|
*
|
2023-08-06 14:51:03 -06:00
|
|
|
* \since This function is available since SDL 3.0.0.
|
2021-10-08 18:22:48 -06:00
|
|
|
*/
|
2024-03-14 17:32:50 -06:00
|
|
|
extern DECLSPEC SDL_bool SDLCALL SDL_WriteS32LE(SDL_IOStream *dst, Sint32 value);
|
2021-10-08 18:22:48 -06:00
|
|
|
|
|
|
|
/**
|
2024-03-14 17:32:50 -06:00
|
|
|
* Use this function to write 32 bits in native format to an SDL_IOStream as
|
2021-10-08 18:22:48 -06:00
|
|
|
* big-endian data.
|
|
|
|
*
|
|
|
|
* SDL byteswaps the data only if necessary, so the application always
|
|
|
|
* specifies native format, and the data written will be in big-endian format.
|
|
|
|
*
|
|
|
|
* \param dst the stream to which data will be written
|
|
|
|
* \param value the data to be written, in native format
|
2023-08-07 21:37:14 -06:00
|
|
|
* \returns SDL_TRUE on successful write, SDL_FALSE on failure; call
|
|
|
|
* SDL_GetError() for more information.
|
2021-10-08 18:22:48 -06:00
|
|
|
*
|
2022-11-22 15:40:14 -07:00
|
|
|
* \since This function is available since SDL 3.0.0.
|
2023-08-06 14:51:03 -06:00
|
|
|
*/
|
2024-03-14 17:32:50 -06:00
|
|
|
extern DECLSPEC SDL_bool SDLCALL SDL_WriteU32BE(SDL_IOStream *dst, Uint32 value);
|
2023-08-06 14:51:03 -06:00
|
|
|
|
|
|
|
/**
|
2024-03-14 17:32:50 -06:00
|
|
|
* Use this function to write 32 bits in native format to an SDL_IOStream as
|
2023-08-06 14:51:03 -06:00
|
|
|
* big-endian data.
|
|
|
|
*
|
|
|
|
* SDL byteswaps the data only if necessary, so the application always
|
|
|
|
* specifies native format, and the data written will be in big-endian format.
|
2021-10-26 19:36:05 -06:00
|
|
|
*
|
2023-08-06 14:51:03 -06:00
|
|
|
* \param dst the stream to which data will be written
|
|
|
|
* \param value the data to be written, in native format
|
2023-08-07 21:37:14 -06:00
|
|
|
* \returns SDL_TRUE on successful write, SDL_FALSE on failure; call
|
|
|
|
* SDL_GetError() for more information.
|
2023-08-06 14:51:03 -06:00
|
|
|
*
|
|
|
|
* \since This function is available since SDL 3.0.0.
|
2021-10-08 18:22:48 -06:00
|
|
|
*/
|
2024-03-14 17:32:50 -06:00
|
|
|
extern DECLSPEC SDL_bool SDLCALL SDL_WriteS32BE(SDL_IOStream *dst, Sint32 value);
|
2021-10-08 18:22:48 -06:00
|
|
|
|
|
|
|
/**
|
2024-03-14 17:32:50 -06:00
|
|
|
* Use this function to write 64 bits in native format to an SDL_IOStream as
|
2021-10-08 18:22:48 -06:00
|
|
|
* little-endian data.
|
|
|
|
*
|
|
|
|
* SDL byteswaps the data only if necessary, so the application always
|
|
|
|
* specifies native format, and the data written will be in little-endian
|
|
|
|
* format.
|
|
|
|
*
|
|
|
|
* \param dst the stream to which data will be written
|
|
|
|
* \param value the data to be written, in native format
|
2023-08-07 21:37:14 -06:00
|
|
|
* \returns SDL_TRUE on successful write, SDL_FALSE on failure; call
|
|
|
|
* SDL_GetError() for more information.
|
2021-10-08 18:22:48 -06:00
|
|
|
*
|
2022-11-22 15:40:14 -07:00
|
|
|
* \since This function is available since SDL 3.0.0.
|
2023-08-06 14:51:03 -06:00
|
|
|
*/
|
2024-03-14 17:32:50 -06:00
|
|
|
extern DECLSPEC SDL_bool SDLCALL SDL_WriteU64LE(SDL_IOStream *dst, Uint64 value);
|
2023-08-06 14:51:03 -06:00
|
|
|
|
|
|
|
/**
|
2024-03-14 17:32:50 -06:00
|
|
|
* Use this function to write 64 bits in native format to an SDL_IOStream as
|
2023-08-06 14:51:03 -06:00
|
|
|
* little-endian data.
|
|
|
|
*
|
|
|
|
* SDL byteswaps the data only if necessary, so the application always
|
|
|
|
* specifies native format, and the data written will be in little-endian
|
|
|
|
* format.
|
2021-10-26 19:36:05 -06:00
|
|
|
*
|
2023-08-06 14:51:03 -06:00
|
|
|
* \param dst the stream to which data will be written
|
|
|
|
* \param value the data to be written, in native format
|
2023-08-07 21:37:14 -06:00
|
|
|
* \returns SDL_TRUE on successful write, SDL_FALSE on failure; call
|
|
|
|
* SDL_GetError() for more information.
|
2023-08-06 14:51:03 -06:00
|
|
|
*
|
|
|
|
* \since This function is available since SDL 3.0.0.
|
2021-10-08 18:22:48 -06:00
|
|
|
*/
|
2024-03-14 17:32:50 -06:00
|
|
|
extern DECLSPEC SDL_bool SDLCALL SDL_WriteS64LE(SDL_IOStream *dst, Sint64 value);
|
2021-10-08 18:22:48 -06:00
|
|
|
|
|
|
|
/**
|
2024-03-14 17:32:50 -06:00
|
|
|
* Use this function to write 64 bits in native format to an SDL_IOStream as
|
2021-10-08 18:22:48 -06:00
|
|
|
* big-endian data.
|
|
|
|
*
|
|
|
|
* SDL byteswaps the data only if necessary, so the application always
|
|
|
|
* specifies native format, and the data written will be in big-endian format.
|
|
|
|
*
|
|
|
|
* \param dst the stream to which data will be written
|
|
|
|
* \param value the data to be written, in native format
|
2023-08-07 21:37:14 -06:00
|
|
|
* \returns SDL_TRUE on successful write, SDL_FALSE on failure; call
|
|
|
|
* SDL_GetError() for more information.
|
2021-10-08 18:22:48 -06:00
|
|
|
*
|
2022-11-22 15:40:14 -07:00
|
|
|
* \since This function is available since SDL 3.0.0.
|
2023-08-06 14:51:03 -06:00
|
|
|
*/
|
2024-03-14 17:32:50 -06:00
|
|
|
extern DECLSPEC SDL_bool SDLCALL SDL_WriteU64BE(SDL_IOStream *dst, Uint64 value);
|
2023-08-06 14:51:03 -06:00
|
|
|
|
2023-08-23 22:19:04 -06:00
|
|
|
/**
|
2024-03-14 17:32:50 -06:00
|
|
|
* Use this function to write 64 bits in native format to an SDL_IOStream as
|
2023-08-23 22:19:04 -06:00
|
|
|
* big-endian data.
|
|
|
|
*
|
|
|
|
* SDL byteswaps the data only if necessary, so the application always
|
|
|
|
* specifies native format, and the data written will be in big-endian format.
|
|
|
|
*
|
|
|
|
* \param dst the stream to which data will be written
|
|
|
|
* \param value the data to be written, in native format
|
|
|
|
* \returns SDL_TRUE on successful write, SDL_FALSE on failure; call
|
|
|
|
* SDL_GetError() for more information.
|
|
|
|
*
|
|
|
|
* \since This function is available since SDL 3.0.0.
|
|
|
|
*/
|
2024-03-14 17:32:50 -06:00
|
|
|
extern DECLSPEC SDL_bool SDLCALL SDL_WriteS64BE(SDL_IOStream *dst, Sint64 value);
|
2023-08-23 22:19:04 -06:00
|
|
|
|
2015-06-21 09:33:46 -06:00
|
|
|
/* @} *//* Write endian functions */
|
|
|
|
|
|
|
|
/* Ends C function definitions when using C++ */
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
2022-12-22 09:38:59 -07:00
|
|
|
#include <SDL3/SDL_close_code.h>
|
2015-06-21 09:33:46 -06:00
|
|
|
|
2024-03-14 21:30:59 -06:00
|
|
|
#endif /* SDL_iostream_h_ */
|