Mercurial > sdl-ios-xcode
comparison include/SDL_rwops.h @ 4864:ebcb4988b16f
Fixed documentation typo
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Sun, 22 Aug 2010 17:19:10 -0700 |
parents | f7b03b6838cb |
children | 158bb5752974 |
comparison
equal
deleted
inserted
replaced
4863:cfe6336d7e60 | 4864:ebcb4988b16f |
---|---|
63 */ | 63 */ |
64 size_t(SDLCALL * read) (struct SDL_RWops * context, void *ptr, | 64 size_t(SDLCALL * read) (struct SDL_RWops * context, void *ptr, |
65 size_t size, size_t maxnum); | 65 size_t size, size_t maxnum); |
66 | 66 |
67 /** | 67 /** |
68 * Write exactly \c num objects each of size \c objsize from the area | 68 * Write exactly \c num objects each of size \c size from the area |
69 * pointed at by \c ptr to data source. | 69 * pointed at by \c ptr to data source. |
70 * | 70 * |
71 * \return the number of objects written, or 0 at error or end of file. | 71 * \return the number of objects written, or 0 at error or end of file. |
72 */ | 72 */ |
73 size_t(SDLCALL * write) (struct SDL_RWops * context, const void *ptr, | 73 size_t(SDLCALL * write) (struct SDL_RWops * context, const void *ptr, |