Function SDL_hid_get_indexed_string
pub unsafe extern "C" fn SDL_hid_get_indexed_string(
dev: *mut SDL_hid_device_,
string_index: i32,
string: *mut i32,
maxlen: usize,
) -> i32
Available on crate feature
dep_sdl2
only.Expand description
Get a string from a HID device, based on its string index.
\param dev A device handle returned from SDL_hid_open(). \param string_index The index of the string to get. \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.