sdlWriteLe16 function

int sdlWriteLe16(
  1. Pointer<SdlRWops> dst,
  2. int value
)

Use this function to write 16 bits in native format to a SDL_RWops as little-endian data.

SDL byteswaps the data only if necessary, so the application always specifies native format, and the data written will be in little-endian format.

\param dst the stream to which data will be written \param value the data to be written, in native format \returns 1 on successful write, 0 on error.

\since This function is available since SDL 2.0.0.

\sa SDL_WriteBE16

extern DECLSPEC size_t SDLCALL SDL_WriteLE16(SDL_RWops * dst, Uint16 value)

Implementation

int sdlWriteLe16(Pointer<SdlRWops> dst, int value) {
  final sdlWriteLe16LookupFunction = libSdl2.lookupFunction<
      Uint32 Function(Pointer<SdlRWops> dst, Uint16 value),
      int Function(Pointer<SdlRWops> dst, int value)>('SDL_WriteLE16');
  return sdlWriteLe16LookupFunction(dst, value);
}