DRAFT |
SDL_WriteLE64
Use this function to write an item of native format to the specified endianness.
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 little-endian format.
Syntax
size_t SDL_WriteLE64(SDL_RWops* dst,
Uint64 value)
Function Parameters
dst |
the SDL_RWops structure to be filled |
value |
the data to write as little-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
Should the other Read functions and/or the Write functions be listed here?

