|
Size: 929
Comment: create page, add content (Wed Mar 10 ver; changeset 4428)
|
← Revision 5 as of 2015-12-19 22:27:27 ⇥
Size: 859
Comment: Fixed Syntax section, see SGFunctions.
|
| 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. | Use this function to write 64 bits in native format to a [[SDL_RWops]] as big-endian data. |
| Line 17: | Line 16: |
| ||'''dst'''||^a pointer to the destination for the endian data to be written^|| ||'''value'''||^the native format value to convert to endian format^|| |
||'''dst'''||the stream to which data will be written|| ||'''value'''||the data to be written, in native format|| |
| Line 21: | Line 20: |
| ^A big-endian value of size_t???????????^ | Returns 1 on successful write, 0 on error. |
| Line 29: | Line 28: |
| ''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 33: | Line 32: |
| <<Color2(green,Should the other Read functions and/or the Write functions be listed here?)>> |
SDL_WriteBE64
Use this function to write 64 bits in native format to a SDL_RWops as big-endian data.
Contents
Syntax
size_t SDL_WriteBE64(SDL_RWops* dst,
Uint64 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.
