Mercurial > sdl-ios-xcode
comparison include/SDL_rwops.h @ 3614:701f54683b24
Merged r4412:4413 from branches/SDL-1.2: rwops documentation fix.
author | Ryan C. Gordon <icculus@icculus.org> |
---|---|
date | Wed, 06 Jan 2010 07:39:35 +0000 |
parents | d264d99576c1 |
children | f7b03b6838cb |
comparison
equal
deleted
inserted
replaced
3613:dcc88e97091d | 3614:701f54683b24 |
---|---|
54 */ | 54 */ |
55 long (SDLCALL * seek) (struct SDL_RWops * context, long offset, | 55 long (SDLCALL * seek) (struct SDL_RWops * context, long offset, |
56 int whence); | 56 int whence); |
57 | 57 |
58 /** | 58 /** |
59 * Read up to \c num objects each of size \c objsize from the data | 59 * Read up to \c maxnum objects each of size \c size from the data |
60 * source to the area pointed at by \c ptr. | 60 * source to the area pointed at by \c ptr. |
61 * | 61 * |
62 * \return the number of objects read, or 0 at error or end of file. | 62 * \return the number of objects read, or 0 at error or end of file. |
63 */ | 63 */ |
64 size_t(SDLCALL * read) (struct SDL_RWops * context, void *ptr, | 64 size_t(SDLCALL * read) (struct SDL_RWops * context, void *ptr, |