Use this function to write 64 bits in native format to a SDL_RWops as little-endian data.
size_t SDL_WriteLE64(SDL_RWops * dst, Uint64 value);
dst | the stream to which data will be written |
value | the data to be written, in native format |
Returns 1 on successful write, 0 on error.
SDL byteswaps the data only if necessary, so the application always specifies native format, and the data written will be in little-endian format.
This function is available since SDL 3.0.0.