Signed-off-by: Jonas Ådahl <jadahl@gmail.com>
struct libinput_event_touch {
struct libinput_event base;
uint32_t time;
- uint32_t slot;
+ int32_t slot;
li_fixed_t x;
li_fixed_t y;
enum libinput_touch_type touch_type;
return event->time;
}
-LIBINPUT_EXPORT uint32_t
+LIBINPUT_EXPORT int32_t
libinput_event_touch_get_slot(struct libinput_event_touch *event)
{
return event->slot;
*
* @return The slot of this touch event
*/
-uint32_t
+int32_t
libinput_event_touch_get_slot(struct libinput_event_touch *event);
/**