Wiki Page Content

Differences between revisions 3 and 4
Revision 3 as of 2010-10-13 19:49:08
Size: 1176
Editor: SheenaSmith
Comment: update content - pointers, structs
Revision 4 as of 2013-08-08 18:58:41
Size: 833
Editor: RyanGordon
Comment: Rewritten
Deletions are marked like this. Additions are marked like this.
Line 3: Line 3:
||<tablewidth="100%" style="color: #FF0000;" :> DRAFT||
Line 6: Line 5:
Use this function to write an item of native format to the specified endianness.

<<Color2(green,This is the generalized description from the header. Should it be adjusted to be specific for each function for the wiki? ie: Use this function to write an item of native format to big-endian format.)>>
Use this function to write 32 bits in native format to a [[SDL_RWops]] as big-endian data.
Line 14: Line 11:
size_t SDL_WriteBE32(SDL_RWops* dst,
                    
Uint32     value)
size_t SDL_WriteBE32(SDL_RWops* dst, Uint32 value)
Line 19: Line 15:
||'''dst'''||^the SDL_RWops structure to be filled^||
||'''value'''||^the data to write as big-endian^||
||'''dst'''||the stream to which data will be written||
||'''value'''||the data to be written, in native format||
Line 23: Line 19:
The size (in bytes) of the data that was written, or 0 for error; call [[SDL_GetError]]() for more information. Returns 1 on successful write, 0 on error.
Line 31: Line 27:
''You can add useful comments here'' SDL byteswaps the data only if necessary, so the application always specifies native format, and the data written will be in big-endian format.
Line 35: Line 31:
<<Color2(green,Should the other Read functions and/or the Write functions be listed here?)>>

SDL_WriteBE32

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

Syntax

size_t SDL_WriteBE32(SDL_RWops* dst, Uint32 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 big-endian format.


CategoryAPI, CategoryIO

None: SDL_WriteBE32 (last edited 2015-12-19 22:26:37 by PhilippWiesemann)

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