Wiki Page Content

Differences between revisions 5 and 6
Revision 5 as of 2013-08-08 19:00:49
Size: 839
Editor: RyanGordon
Comment: oops
Revision 6 as of 2015-12-19 22:25:09
Size: 865
Comment: Fixed Syntax section, see SGFunctions.
Deletions are marked like this. Additions are marked like this.
Line 11: Line 11:
size_t SDL_WriteLE16(SDL_RWops* dst, Uint16 value) size_t SDL_WriteLE16(SDL_RWops* dst,
                    
Uint16     value)

SDL_WriteLE16

Use this function to write 16 bits in native format to a SDL_RWops as little-endian data.

Syntax

size_t SDL_WriteLE16(SDL_RWops* dst,
                     Uint16     value)

Function Parameters

dst

the stream to which data will be written

value

the data to be written, in native format

Return Value

Returns 1 on successful write, 0 on error.

Code Examples

You can add your code example here

Remarks

SDL byteswaps the data only if necessary, so the application always specifies native format, and the data written will be in little-endian format.


CategoryAPI, CategoryIO

None: SDL_WriteLE16 (last edited 2015-12-19 22:25:09 by PhilippWiesemann)

(Page Info.)
Feedback
Please include your contact information if you'd like to receive a reply.
Submit