sdlReadBe16 function

int sdlReadBe16(
  1. Pointer<SdlRWops> src
)

Use this function to read 16 bits of big-endian data from an SDL_RWops and return in native format.

SDL byteswaps the data only if necessary, so the data returned will be in the native byte order.

\param src the stream from which to read data \returns 16 bits of data in the native byte order of the platform.

\since This function is available since SDL 2.0.0.

\sa SDL_ReadLE16

extern DECLSPEC Uint16 SDLCALL SDL_ReadBE16(SDL_RWops * src)

Implementation

int sdlReadBe16(Pointer<SdlRWops> src) {
  final sdlReadBe16LookupFunction = libSdl2.lookupFunction<
      Uint16 Function(Pointer<SdlRWops> src),
      int Function(Pointer<SdlRWops> src)>('SDL_ReadBE16');
  return sdlReadBe16LookupFunction(src);
}