|
⇤ ← Revision 1 as of 2010-06-16 23:30:00
Size: 929
Comment: create page, add content (Wed Mar 10 ver; changeset 4428)
|
Size: 1181
Comment: update content
|
| Deletions are marked like this. | Additions are marked like this. |
| Line 7: | Line 7: |
<<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.)>> |
|
| Line 17: | Line 19: |
| ||'''dst'''||^a pointer to the destination for the endian data to be written^|| ||'''value'''||^the native format value to convert to endian format^|| |
||'''dst'''||^a pointer to the destination to be filled^|| ||'''value'''||^the data to write as big-endian^|| |
| Line 21: | Line 23: |
| ^A big-endian value of size_t???????????^ | The size (in bytes) of the data that was written, or 0 for error; call [[SDL_GetError]]() for more information. |
DRAFT |
SDL_WriteBE32
Use this function to write an item of native format to the specified endianness.
green
Contents
Syntax
size_t SDL_WriteBE32(SDL_RWops* dst,
Uint32 value)
Function Parameters
dst |
a pointer to the destination to be filled |
value |
the data to write as big-endian |
Return Value
The size (in bytes) of the data that was written, or 0 for error; call SDL_GetError() for more information.
Code Examples
You can add your code example here
Remarks
You can add useful comments here
Related Functions
green
