123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765 |
- /*
- Simple DirectMedia Layer
- Copyright (C) 1997-2014 Sam Lantinga <slouken@libsdl.org>
- 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.
- */
- /* Need this so Linux systems define fseek64o, ftell64o and off64_t */
- #define _LARGEFILE64_SOURCE
- #include "../SDL_internal.h"
- #if defined(__WIN32__)
- #include "../core/windows/SDL_windows.h"
- #endif
- /* This file provides a general interface for SDL to read and write
- data sources. It can easily be extended to files, memory, etc.
- */
- #include "SDL_endian.h"
- #include "SDL_rwops.h"
- #ifdef __APPLE__
- #include "cocoa/SDL_rwopsbundlesupport.h"
- #endif /* __APPLE__ */
- #ifdef ANDROID
- #include "../core/android/SDL_android.h"
- #include "SDL_system.h"
- #endif
- #ifdef __WIN32__
- /* Functions to read/write Win32 API file pointers */
- #ifndef INVALID_SET_FILE_POINTER
- #define INVALID_SET_FILE_POINTER 0xFFFFFFFF
- #endif
- #define READAHEAD_BUFFER_SIZE 1024
- static int SDLCALL
- windows_file_open(SDL_RWops * context, const char *filename, const char *mode)
- {
- UINT old_error_mode;
- HANDLE h;
- DWORD r_right, w_right;
- DWORD must_exist, truncate;
- int a_mode;
- if (!context)
- return -1; /* failed (invalid call) */
- context->hidden.windowsio.h = INVALID_HANDLE_VALUE; /* mark this as unusable */
- context->hidden.windowsio.buffer.data = NULL;
- context->hidden.windowsio.buffer.size = 0;
- context->hidden.windowsio.buffer.left = 0;
- /* "r" = reading, file must exist */
- /* "w" = writing, truncate existing, file may not exist */
- /* "r+"= reading or writing, file must exist */
- /* "a" = writing, append file may not exist */
- /* "a+"= append + read, file may not exist */
- /* "w+" = read, write, truncate. file may not exist */
- must_exist = (SDL_strchr(mode, 'r') != NULL) ? OPEN_EXISTING : 0;
- truncate = (SDL_strchr(mode, 'w') != NULL) ? CREATE_ALWAYS : 0;
- r_right = (SDL_strchr(mode, '+') != NULL
- || must_exist) ? GENERIC_READ : 0;
- a_mode = (SDL_strchr(mode, 'a') != NULL) ? OPEN_ALWAYS : 0;
- w_right = (a_mode || SDL_strchr(mode, '+')
- || truncate) ? GENERIC_WRITE : 0;
- if (!r_right && !w_right) /* inconsistent mode */
- return -1; /* failed (invalid call) */
- context->hidden.windowsio.buffer.data =
- (char *) SDL_malloc(READAHEAD_BUFFER_SIZE);
- if (!context->hidden.windowsio.buffer.data) {
- return SDL_OutOfMemory();
- }
- /* Do not open a dialog box if failure */
- old_error_mode =
- SetErrorMode(SEM_NOOPENFILEERRORBOX | SEM_FAILCRITICALERRORS);
- {
- LPTSTR tstr = WIN_UTF8ToString(filename);
- h = CreateFile(tstr, (w_right | r_right),
- (w_right) ? 0 : FILE_SHARE_READ, NULL,
- (must_exist | truncate | a_mode),
- FILE_ATTRIBUTE_NORMAL, NULL);
- SDL_free(tstr);
- }
- /* restore old behavior */
- SetErrorMode(old_error_mode);
- if (h == INVALID_HANDLE_VALUE) {
- SDL_free(context->hidden.windowsio.buffer.data);
- context->hidden.windowsio.buffer.data = NULL;
- SDL_SetError("Couldn't open %s", filename);
- return -2; /* failed (CreateFile) */
- }
- context->hidden.windowsio.h = h;
- context->hidden.windowsio.append = a_mode ? SDL_TRUE : SDL_FALSE;
- return 0; /* ok */
- }
- static Sint64 SDLCALL
- windows_file_size(SDL_RWops * context)
- {
- LARGE_INTEGER size;
- if (!context || context->hidden.windowsio.h == INVALID_HANDLE_VALUE) {
- return SDL_SetError("windows_file_size: invalid context/file not opened");
- }
- if (!GetFileSizeEx(context->hidden.windowsio.h, &size)) {
- return WIN_SetError("windows_file_size");
- }
- return size.QuadPart;
- }
- static Sint64 SDLCALL
- windows_file_seek(SDL_RWops * context, Sint64 offset, int whence)
- {
- DWORD windowswhence;
- LARGE_INTEGER windowsoffset;
- if (!context || context->hidden.windowsio.h == INVALID_HANDLE_VALUE) {
- return SDL_SetError("windows_file_seek: invalid context/file not opened");
- }
- /* FIXME: We may be able to satisfy the seek within buffered data */
- if (whence == RW_SEEK_CUR && context->hidden.windowsio.buffer.left) {
- offset -= (long)context->hidden.windowsio.buffer.left;
- }
- context->hidden.windowsio.buffer.left = 0;
- switch (whence) {
- case RW_SEEK_SET:
- windowswhence = FILE_BEGIN;
- break;
- case RW_SEEK_CUR:
- windowswhence = FILE_CURRENT;
- break;
- case RW_SEEK_END:
- windowswhence = FILE_END;
- break;
- default:
- return SDL_SetError("windows_file_seek: Unknown value for 'whence'");
- }
- windowsoffset.QuadPart = offset;
- if (!SetFilePointerEx(context->hidden.windowsio.h, windowsoffset, &windowsoffset, windowswhence)) {
- return WIN_SetError("windows_file_seek");
- }
- return windowsoffset.QuadPart;
- }
- static size_t SDLCALL
- windows_file_read(SDL_RWops * context, void *ptr, size_t size, size_t maxnum)
- {
- size_t total_need;
- size_t total_read = 0;
- size_t read_ahead;
- DWORD byte_read;
- total_need = size * maxnum;
- if (!context || context->hidden.windowsio.h == INVALID_HANDLE_VALUE
- || !total_need)
- return 0;
- if (context->hidden.windowsio.buffer.left > 0) {
- void *data = (char *) context->hidden.windowsio.buffer.data +
- context->hidden.windowsio.buffer.size -
- context->hidden.windowsio.buffer.left;
- read_ahead =
- SDL_min(total_need, context->hidden.windowsio.buffer.left);
- SDL_memcpy(ptr, data, read_ahead);
- context->hidden.windowsio.buffer.left -= read_ahead;
- if (read_ahead == total_need) {
- return maxnum;
- }
- ptr = (char *) ptr + read_ahead;
- total_need -= read_ahead;
- total_read += read_ahead;
- }
- if (total_need < READAHEAD_BUFFER_SIZE) {
- if (!ReadFile
- (context->hidden.windowsio.h, context->hidden.windowsio.buffer.data,
- READAHEAD_BUFFER_SIZE, &byte_read, NULL)) {
- SDL_Error(SDL_EFREAD);
- return 0;
- }
- read_ahead = SDL_min(total_need, (int) byte_read);
- SDL_memcpy(ptr, context->hidden.windowsio.buffer.data, read_ahead);
- context->hidden.windowsio.buffer.size = byte_read;
- context->hidden.windowsio.buffer.left = byte_read - read_ahead;
- total_read += read_ahead;
- } else {
- if (!ReadFile
- (context->hidden.windowsio.h, ptr, (DWORD)total_need, &byte_read, NULL)) {
- SDL_Error(SDL_EFREAD);
- return 0;
- }
- total_read += byte_read;
- }
- return (total_read / size);
- }
- static size_t SDLCALL
- windows_file_write(SDL_RWops * context, const void *ptr, size_t size,
- size_t num)
- {
- size_t total_bytes;
- DWORD byte_written;
- size_t nwritten;
- total_bytes = size * num;
- if (!context || context->hidden.windowsio.h == INVALID_HANDLE_VALUE
- || total_bytes <= 0 || !size)
- return 0;
- if (context->hidden.windowsio.buffer.left) {
- SetFilePointer(context->hidden.windowsio.h,
- -(LONG)context->hidden.windowsio.buffer.left, NULL,
- FILE_CURRENT);
- context->hidden.windowsio.buffer.left = 0;
- }
- /* if in append mode, we must go to the EOF before write */
- if (context->hidden.windowsio.append) {
- if (SetFilePointer(context->hidden.windowsio.h, 0L, NULL, FILE_END) ==
- INVALID_SET_FILE_POINTER) {
- SDL_Error(SDL_EFWRITE);
- return 0;
- }
- }
- if (!WriteFile
- (context->hidden.windowsio.h, ptr, (DWORD)total_bytes, &byte_written, NULL)) {
- SDL_Error(SDL_EFWRITE);
- return 0;
- }
- nwritten = byte_written / size;
- return nwritten;
- }
- static int SDLCALL
- windows_file_close(SDL_RWops * context)
- {
- if (context) {
- if (context->hidden.windowsio.h != INVALID_HANDLE_VALUE) {
- CloseHandle(context->hidden.windowsio.h);
- context->hidden.windowsio.h = INVALID_HANDLE_VALUE; /* to be sure */
- }
- SDL_free(context->hidden.windowsio.buffer.data);
- context->hidden.windowsio.buffer.data = NULL;
- SDL_FreeRW(context);
- }
- return 0;
- }
- #endif /* __WIN32__ */
- #ifdef HAVE_STDIO_H
- /* Functions to read/write stdio file pointers */
- static Sint64 SDLCALL
- stdio_size(SDL_RWops * context)
- {
- Sint64 pos, size;
- pos = SDL_RWseek(context, 0, RW_SEEK_CUR);
- if (pos < 0) {
- return -1;
- }
- size = SDL_RWseek(context, 0, RW_SEEK_END);
- SDL_RWseek(context, pos, RW_SEEK_SET);
- return size;
- }
- static Sint64 SDLCALL
- stdio_seek(SDL_RWops * context, Sint64 offset, int whence)
- {
- #ifdef HAVE_FSEEKO64
- if (fseeko64(context->hidden.stdio.fp, (off64_t)offset, whence) == 0) {
- return ftello64(context->hidden.stdio.fp);
- }
- #elif defined(HAVE_FSEEKO)
- if (fseeko(context->hidden.stdio.fp, (off_t)offset, whence) == 0) {
- return ftello(context->hidden.stdio.fp);
- }
- #elif defined(HAVE__FSEEKI64)
- if (_fseeki64(context->hidden.stdio.fp, offset, whence) == 0) {
- return _ftelli64(context->hidden.stdio.fp);
- }
- #else
- if (fseek(context->hidden.stdio.fp, offset, whence) == 0) {
- return ftell(context->hidden.stdio.fp);
- }
- #endif
- return SDL_Error(SDL_EFSEEK);
- }
- static size_t SDLCALL
- stdio_read(SDL_RWops * context, void *ptr, size_t size, size_t maxnum)
- {
- size_t nread;
- nread = fread(ptr, size, maxnum, context->hidden.stdio.fp);
- if (nread == 0 && ferror(context->hidden.stdio.fp)) {
- SDL_Error(SDL_EFREAD);
- }
- return nread;
- }
- static size_t SDLCALL
- stdio_write(SDL_RWops * context, const void *ptr, size_t size, size_t num)
- {
- size_t nwrote;
- nwrote = fwrite(ptr, size, num, context->hidden.stdio.fp);
- if (nwrote == 0 && ferror(context->hidden.stdio.fp)) {
- SDL_Error(SDL_EFWRITE);
- }
- return nwrote;
- }
- static int SDLCALL
- stdio_close(SDL_RWops * context)
- {
- int status = 0;
- if (context) {
- if (context->hidden.stdio.autoclose) {
- /* WARNING: Check the return value here! */
- if (fclose(context->hidden.stdio.fp) != 0) {
- status = SDL_Error(SDL_EFWRITE);
- }
- }
- SDL_FreeRW(context);
- }
- return status;
- }
- #endif /* !HAVE_STDIO_H */
- /* Functions to read/write memory pointers */
- static Sint64 SDLCALL
- mem_size(SDL_RWops * context)
- {
- return (Sint64)(context->hidden.mem.stop - context->hidden.mem.base);
- }
- static Sint64 SDLCALL
- mem_seek(SDL_RWops * context, Sint64 offset, int whence)
- {
- Uint8 *newpos;
- switch (whence) {
- case RW_SEEK_SET:
- newpos = context->hidden.mem.base + offset;
- break;
- case RW_SEEK_CUR:
- newpos = context->hidden.mem.here + offset;
- break;
- case RW_SEEK_END:
- newpos = context->hidden.mem.stop + offset;
- break;
- default:
- return SDL_SetError("Unknown value for 'whence'");
- }
- if (newpos < context->hidden.mem.base) {
- newpos = context->hidden.mem.base;
- }
- if (newpos > context->hidden.mem.stop) {
- newpos = context->hidden.mem.stop;
- }
- context->hidden.mem.here = newpos;
- return (Sint64)(context->hidden.mem.here - context->hidden.mem.base);
- }
- static size_t SDLCALL
- mem_read(SDL_RWops * context, void *ptr, size_t size, size_t maxnum)
- {
- size_t total_bytes;
- size_t mem_available;
- total_bytes = (maxnum * size);
- if ((maxnum <= 0) || (size <= 0)
- || ((total_bytes / maxnum) != (size_t) size)) {
- return 0;
- }
- mem_available = (context->hidden.mem.stop - context->hidden.mem.here);
- if (total_bytes > mem_available) {
- total_bytes = mem_available;
- }
- SDL_memcpy(ptr, context->hidden.mem.here, total_bytes);
- context->hidden.mem.here += total_bytes;
- return (total_bytes / size);
- }
- static size_t SDLCALL
- mem_write(SDL_RWops * context, const void *ptr, size_t size, size_t num)
- {
- if ((context->hidden.mem.here + (num * size)) > context->hidden.mem.stop) {
- num = (context->hidden.mem.stop - context->hidden.mem.here) / size;
- }
- SDL_memcpy(context->hidden.mem.here, ptr, num * size);
- context->hidden.mem.here += num * size;
- return num;
- }
- static size_t SDLCALL
- mem_writeconst(SDL_RWops * context, const void *ptr, size_t size, size_t num)
- {
- SDL_SetError("Can't write to read-only memory");
- return 0;
- }
- static int SDLCALL
- mem_close(SDL_RWops * context)
- {
- if (context) {
- SDL_FreeRW(context);
- }
- return 0;
- }
- /* Functions to create SDL_RWops structures from various data sources */
- SDL_RWops *
- SDL_RWFromFile(const char *file, const char *mode)
- {
- SDL_RWops *rwops = NULL;
- if (!file || !*file || !mode || !*mode) {
- SDL_SetError("SDL_RWFromFile(): No file or no mode specified");
- return NULL;
- }
- #if defined(ANDROID)
- #ifdef HAVE_STDIO_H
- /* Try to open the file on the filesystem first */
- if (*file == '/') {
- FILE *fp = fopen(file, mode);
- if (fp) {
- return SDL_RWFromFP(fp, 1);
- }
- } else {
- /* Try opening it from internal storage if it's a relative path */
- char *path;
- FILE *fp;
- path = SDL_stack_alloc(char, PATH_MAX);
- if (path) {
- SDL_snprintf(path, PATH_MAX, "%s/%s",
- SDL_AndroidGetInternalStoragePath(), file);
- fp = fopen(path, mode);
- SDL_stack_free(path);
- if (fp) {
- return SDL_RWFromFP(fp, 1);
- }
- }
- }
- #endif /* HAVE_STDIO_H */
- /* Try to open the file from the asset system */
- rwops = SDL_AllocRW();
- if (!rwops)
- return NULL; /* SDL_SetError already setup by SDL_AllocRW() */
- if (Android_JNI_FileOpen(rwops, file, mode) < 0) {
- SDL_FreeRW(rwops);
- return NULL;
- }
- rwops->size = Android_JNI_FileSize;
- rwops->seek = Android_JNI_FileSeek;
- rwops->read = Android_JNI_FileRead;
- rwops->write = Android_JNI_FileWrite;
- rwops->close = Android_JNI_FileClose;
- rwops->type = SDL_RWOPS_JNIFILE;
- #elif defined(__WIN32__)
- rwops = SDL_AllocRW();
- if (!rwops)
- return NULL; /* SDL_SetError already setup by SDL_AllocRW() */
- if (windows_file_open(rwops, file, mode) < 0) {
- SDL_FreeRW(rwops);
- return NULL;
- }
- rwops->size = windows_file_size;
- rwops->seek = windows_file_seek;
- rwops->read = windows_file_read;
- rwops->write = windows_file_write;
- rwops->close = windows_file_close;
- rwops->type = SDL_RWOPS_WINFILE;
- #elif HAVE_STDIO_H
- {
- #ifdef __APPLE__
- FILE *fp = SDL_OpenFPFromBundleOrFallback(file, mode);
- #elif __WINRT__
- FILE *fp = NULL;
- fopen_s(&fp, file, mode);
- #else
- FILE *fp = fopen(file, mode);
- #endif
- if (fp == NULL) {
- SDL_SetError("Couldn't open %s", file);
- } else {
- rwops = SDL_RWFromFP(fp, 1);
- }
- }
- #else
- SDL_SetError("SDL not compiled with stdio support");
- #endif /* !HAVE_STDIO_H */
- return rwops;
- }
- #ifdef HAVE_STDIO_H
- SDL_RWops *
- SDL_RWFromFP(FILE * fp, SDL_bool autoclose)
- {
- SDL_RWops *rwops = NULL;
- rwops = SDL_AllocRW();
- if (rwops != NULL) {
- rwops->size = stdio_size;
- rwops->seek = stdio_seek;
- rwops->read = stdio_read;
- rwops->write = stdio_write;
- rwops->close = stdio_close;
- rwops->hidden.stdio.fp = fp;
- rwops->hidden.stdio.autoclose = autoclose;
- rwops->type = SDL_RWOPS_STDFILE;
- }
- return rwops;
- }
- #else
- SDL_RWops *
- SDL_RWFromFP(void * fp, SDL_bool autoclose)
- {
- SDL_SetError("SDL not compiled with stdio support");
- return NULL;
- }
- #endif /* HAVE_STDIO_H */
- SDL_RWops *
- SDL_RWFromMem(void *mem, int size)
- {
- SDL_RWops *rwops = NULL;
- if (!mem) {
- SDL_InvalidParamError("mem");
- return rwops;
- }
- if (!size) {
- SDL_InvalidParamError("size");
- return rwops;
- }
- rwops = SDL_AllocRW();
- if (rwops != NULL) {
- rwops->size = mem_size;
- rwops->seek = mem_seek;
- rwops->read = mem_read;
- rwops->write = mem_write;
- rwops->close = mem_close;
- rwops->hidden.mem.base = (Uint8 *) mem;
- rwops->hidden.mem.here = rwops->hidden.mem.base;
- rwops->hidden.mem.stop = rwops->hidden.mem.base + size;
- rwops->type = SDL_RWOPS_MEMORY;
- }
- return rwops;
- }
- SDL_RWops *
- SDL_RWFromConstMem(const void *mem, int size)
- {
- SDL_RWops *rwops = NULL;
- if (!mem) {
- SDL_InvalidParamError("mem");
- return rwops;
- }
- if (!size) {
- SDL_InvalidParamError("size");
- return rwops;
- }
- rwops = SDL_AllocRW();
- if (rwops != NULL) {
- rwops->size = mem_size;
- rwops->seek = mem_seek;
- rwops->read = mem_read;
- rwops->write = mem_writeconst;
- rwops->close = mem_close;
- rwops->hidden.mem.base = (Uint8 *) mem;
- rwops->hidden.mem.here = rwops->hidden.mem.base;
- rwops->hidden.mem.stop = rwops->hidden.mem.base + size;
- rwops->type = SDL_RWOPS_MEMORY_RO;
- }
- return rwops;
- }
- SDL_RWops *
- SDL_AllocRW(void)
- {
- SDL_RWops *area;
- area = (SDL_RWops *) SDL_malloc(sizeof *area);
- if (area == NULL) {
- SDL_OutOfMemory();
- } else {
- area->type = SDL_RWOPS_UNKNOWN;
- }
- return area;
- }
- void
- SDL_FreeRW(SDL_RWops * area)
- {
- SDL_free(area);
- }
- /* Functions for dynamically reading and writing endian-specific values */
- Uint8
- SDL_ReadU8(SDL_RWops * src)
- {
- Uint8 value = 0;
- SDL_RWread(src, &value, sizeof (value), 1);
- return value;
- }
- Uint16
- SDL_ReadLE16(SDL_RWops * src)
- {
- Uint16 value = 0;
- SDL_RWread(src, &value, sizeof (value), 1);
- return SDL_SwapLE16(value);
- }
- Uint16
- SDL_ReadBE16(SDL_RWops * src)
- {
- Uint16 value = 0;
- SDL_RWread(src, &value, sizeof (value), 1);
- return SDL_SwapBE16(value);
- }
- Uint32
- SDL_ReadLE32(SDL_RWops * src)
- {
- Uint32 value = 0;
- SDL_RWread(src, &value, sizeof (value), 1);
- return SDL_SwapLE32(value);
- }
- Uint32
- SDL_ReadBE32(SDL_RWops * src)
- {
- Uint32 value = 0;
- SDL_RWread(src, &value, sizeof (value), 1);
- return SDL_SwapBE32(value);
- }
- Uint64
- SDL_ReadLE64(SDL_RWops * src)
- {
- Uint64 value = 0;
- SDL_RWread(src, &value, sizeof (value), 1);
- return SDL_SwapLE64(value);
- }
- Uint64
- SDL_ReadBE64(SDL_RWops * src)
- {
- Uint64 value = 0;
- SDL_RWread(src, &value, sizeof (value), 1);
- return SDL_SwapBE64(value);
- }
- size_t
- SDL_WriteU8(SDL_RWops * dst, Uint8 value)
- {
- return SDL_RWwrite(dst, &value, sizeof (value), 1);
- }
- size_t
- SDL_WriteLE16(SDL_RWops * dst, Uint16 value)
- {
- const Uint16 swapped = SDL_SwapLE16(value);
- return SDL_RWwrite(dst, &swapped, sizeof (swapped), 1);
- }
- size_t
- SDL_WriteBE16(SDL_RWops * dst, Uint16 value)
- {
- const Uint16 swapped = SDL_SwapBE16(value);
- return SDL_RWwrite(dst, &swapped, sizeof (swapped), 1);
- }
- size_t
- SDL_WriteLE32(SDL_RWops * dst, Uint32 value)
- {
- const Uint32 swapped = SDL_SwapLE32(value);
- return SDL_RWwrite(dst, &swapped, sizeof (swapped), 1);
- }
- size_t
- SDL_WriteBE32(SDL_RWops * dst, Uint32 value)
- {
- const Uint32 swapped = SDL_SwapBE32(value);
- return SDL_RWwrite(dst, &swapped, sizeof (swapped), 1);
- }
- size_t
- SDL_WriteLE64(SDL_RWops * dst, Uint64 value)
- {
- const Uint64 swapped = SDL_SwapLE64(value);
- return SDL_RWwrite(dst, &swapped, sizeof (swapped), 1);
- }
- size_t
- SDL_WriteBE64(SDL_RWops * dst, Uint64 value)
- {
- const Uint64 swapped = SDL_SwapBE64(value);
- return SDL_RWwrite(dst, &swapped, sizeof (swapped), 1);
- }
- /* vi: set ts=4 sw=4 expandtab: */
|