sdlGetTouchDevices function
Get a list of registered touch devices.
On some platforms SDL first sees the touch device if it was actually used. Therefore the returned list might be empty, although devices are available. After using all devices at least once the number will be correct.
\param count a pointer filled in with the number of devices returned, may be NULL. \returns a 0 terminated array of touch device IDs or NULL on failure; call SDL_GetError() for more information. This should be freed with SDL_free() when it is no longer needed.
\since This function is available since SDL 3.1.3.
extern SDL_DECLSPEC SDL_TouchID * SDLCALL SDL_GetTouchDevices(int *count)
Implementation
Pointer<Uint64> sdlGetTouchDevices(Pointer<Int32> count) {
final sdlGetTouchDevicesLookupFunction = libSdl3.lookupFunction<
Pointer<Uint64> Function(Pointer<Int32> count),
Pointer<Uint64> Function(Pointer<Int32> count)>('SDL_GetTouchDevices');
return sdlGetTouchDevicesLookupFunction(count);
}