#pragma section-numbers off #pragma disable-camelcase = SDL_WriteLE16 = Use this function to write 16 bits in native format to a [[SDL_RWops]] as little-endian data. <> == Syntax == {{{#!highlight cpp size_t SDL_WriteLE16(SDL_RWops* dst, Uint16 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 == {{{#!highlight cpp 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 little-endian format. == Related Functions == .[[SDL_WriteBE16]] ---- [[CategoryAPI]], [[CategoryIO]]