sdlHidGetProductString function

int sdlHidGetProductString(
  1. Pointer<SdlHidDevice> dev,
  2. Pointer<Int16> string,
  3. int maxlen
)

Get The Product String from a HID device.

\param dev A device handle returned from SDL_hid_open(). \param string A wide string buffer to put the data into. \param maxlen The length of the buffer in multiples of wchar_t. \returns 0 on success and -1 on error.

\since This function is available since SDL 2.0.18.

extern DECLSPEC int SDLCALL SDL_hid_get_product_string(SDL_hid_device *dev, wchar_t *string, size_t maxlen)

Implementation

int sdlHidGetProductString(
    Pointer<SdlHidDevice> dev, Pointer<Int16> string, int maxlen) {
  final sdlHidGetProductStringLookupFunction = libSdl2.lookupFunction<
      Int32 Function(
          Pointer<SdlHidDevice> dev, Pointer<Int16> string, Uint32 maxlen),
      int Function(Pointer<SdlHidDevice> dev, Pointer<Int16> string,
          int maxlen)>('SDL_hid_get_product_string');
  return sdlHidGetProductStringLookupFunction(dev, string, maxlen);
}