sdlWriteU16Be function

bool sdlWriteU16Be(
  1. Pointer<SdlIoStream> dst,
  2. int value
)

Use this function to write 16 bits in native format to an SDL_IOStream as big-endian data.

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

\param dst the stream to which data will be written. \param value the data to be written, in native format. \returns true on successful write or false on failure; call SDL_GetError() for more information.

\since This function is available since SDL 3.1.3.

extern SDL_DECLSPEC bool SDLCALL SDL_WriteU16BE(SDL_IOStream *dst, Uint16 value)

Implementation

bool sdlWriteU16Be(Pointer<SdlIoStream> dst, int value) {
  final sdlWriteU16BeLookupFunction = libSdl3.lookupFunction<
      Uint8 Function(Pointer<SdlIoStream> dst, Uint16 value),
      int Function(Pointer<SdlIoStream> dst, int value)>('SDL_WriteU16BE');
  return sdlWriteU16BeLookupFunction(dst, value) == 1;
}