SDL_ExitProcess() was ignoring exit code parameter.
2 Simple DirectMedia Layer
3 Copyright (C) 1997-2012 Sam Lantinga <slouken@libsdl.org>
5 This software is provided 'as-is', without any express or implied
6 warranty. In no event will the authors be held liable for any damages
7 arising from the use of this software.
9 Permission is granted to anyone to use this software for any purpose,
10 including commercial applications, and to alter it and redistribute it
11 freely, subject to the following restrictions:
13 1. The origin of this software must not be misrepresented; you must not
14 claim that you wrote the original software. If you use this software
15 in a product, an acknowledgment in the product documentation would be
16 appreciated but is not required.
17 2. Altered source versions must be plainly marked as such, and must not be
18 misrepresented as being the original software.
19 3. This notice may not be removed or altered from any source distribution.
25 * This file provides a general interface for SDL to read and write
26 * data streams. It can easily be extended to files, memory, etc.
32 #include "SDL_stdinc.h"
33 #include "SDL_error.h"
35 #include "begin_code.h"
36 /* Set up for C function definitions, even when using C++ */
44 * This is the read/write operation structure -- very basic.
46 typedef struct SDL_RWops
49 * Seek to \c offset relative to \c whence, one of stdio's whence values:
50 * RW_SEEK_SET, RW_SEEK_CUR, RW_SEEK_END
52 * \return the final offset in the data stream.
54 long (SDLCALL * seek) (struct SDL_RWops * context, long offset,
58 * Read up to \c maxnum objects each of size \c size from the data
59 * stream to the area pointed at by \c ptr.
61 * \return the number of objects read, or 0 at error or end of file.
63 size_t(SDLCALL * read) (struct SDL_RWops * context, void *ptr,
64 size_t size, size_t maxnum);
67 * Write exactly \c num objects each of size \c size from the area
68 * pointed at by \c ptr to data stream.
70 * \return the number of objects written, or 0 at error or end of file.
72 size_t(SDLCALL * write) (struct SDL_RWops * context, const void *ptr,
73 size_t size, size_t num);
76 * Close and free an allocated SDL_RWops structure.
78 * \return 0 if successful or -1 on write error when flushing data.
80 int (SDLCALL * close) (struct SDL_RWops * context);
92 void *readableByteChannel;
93 void *readableByteChannelRef;
98 #elif defined(__WIN32__)
135 * \name RWFrom functions
137 * Functions to create SDL_RWops structures from various data streams.
141 extern DECLSPEC SDL_RWops *SDLCALL SDL_RWFromFile(const char *file,
145 extern DECLSPEC SDL_RWops *SDLCALL SDL_RWFromFP(FILE * fp,
148 extern DECLSPEC SDL_RWops *SDLCALL SDL_RWFromFP(void * fp,
152 extern DECLSPEC SDL_RWops *SDLCALL SDL_RWFromMem(void *mem, int size);
153 extern DECLSPEC SDL_RWops *SDLCALL SDL_RWFromConstMem(const void *mem,
156 /*@}*//*RWFrom functions*/
159 extern DECLSPEC SDL_RWops *SDLCALL SDL_AllocRW(void);
160 extern DECLSPEC void SDLCALL SDL_FreeRW(SDL_RWops * area);
162 #define RW_SEEK_SET 0 /**< Seek from the beginning of data */
163 #define RW_SEEK_CUR 1 /**< Seek relative to current read point */
164 #define RW_SEEK_END 2 /**< Seek relative to the end of data */
167 * \name Read/write macros
169 * Macros to easily read and write from an SDL_RWops structure.
172 #define SDL_RWseek(ctx, offset, whence) (ctx)->seek(ctx, offset, whence)
173 #define SDL_RWtell(ctx) (ctx)->seek(ctx, 0, RW_SEEK_CUR)
174 #define SDL_RWread(ctx, ptr, size, n) (ctx)->read(ctx, ptr, size, n)
175 #define SDL_RWwrite(ctx, ptr, size, n) (ctx)->write(ctx, ptr, size, n)
176 #define SDL_RWclose(ctx) (ctx)->close(ctx)
177 /*@}*//*Read/write macros*/
181 * \name Read endian functions
183 * Read an item of the specified endianness and return in native format.
186 extern DECLSPEC Uint16 SDLCALL SDL_ReadLE16(SDL_RWops * src);
187 extern DECLSPEC Uint16 SDLCALL SDL_ReadBE16(SDL_RWops * src);
188 extern DECLSPEC Uint32 SDLCALL SDL_ReadLE32(SDL_RWops * src);
189 extern DECLSPEC Uint32 SDLCALL SDL_ReadBE32(SDL_RWops * src);
190 extern DECLSPEC Uint64 SDLCALL SDL_ReadLE64(SDL_RWops * src);
191 extern DECLSPEC Uint64 SDLCALL SDL_ReadBE64(SDL_RWops * src);
192 /*@}*//*Read endian functions*/
195 * \name Write endian functions
197 * Write an item of native format to the specified endianness.
200 extern DECLSPEC size_t SDLCALL SDL_WriteLE16(SDL_RWops * dst, Uint16 value);
201 extern DECLSPEC size_t SDLCALL SDL_WriteBE16(SDL_RWops * dst, Uint16 value);
202 extern DECLSPEC size_t SDLCALL SDL_WriteLE32(SDL_RWops * dst, Uint32 value);
203 extern DECLSPEC size_t SDLCALL SDL_WriteBE32(SDL_RWops * dst, Uint32 value);
204 extern DECLSPEC size_t SDLCALL SDL_WriteLE64(SDL_RWops * dst, Uint64 value);
205 extern DECLSPEC size_t SDLCALL SDL_WriteBE64(SDL_RWops * dst, Uint64 value);
206 /*@}*//*Write endian functions*/
209 /* Ends C function definitions when using C++ */
215 #include "close_code.h"
217 #endif /* _SDL_rwops_h */
219 /* vi: set ts=4 sw=4 expandtab: */