|
Size: 833
Comment: Rewritten
|
← Revision 5 as of 2015-12-19 22:26:37 ⇥
Size: 859
Comment: Fixed Syntax section, see SGFunctions.
|
| Deletions are marked like this. | Additions are marked like this. |
| Line 11: | Line 11: |
| size_t SDL_WriteBE32(SDL_RWops* dst, Uint32 value) | size_t SDL_WriteBE32(SDL_RWops* dst, Uint32 value) |
SDL_WriteBE32
Use this function to write 32 bits in native format to a SDL_RWops as big-endian data.
Contents
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.
