summaryrefslogtreecommitdiff
path: root/src/libinput.h
diff options
context:
space:
mode:
authorPeter Hutterer <peter.hutterer@who-t.net>2015-11-05 13:16:58 +1000
committerPeter Hutterer <peter.hutterer@who-t.net>2015-11-05 13:18:33 +1000
commit4edcd79372a46b49374f88db236b23872ea9363a (patch)
treefc1cda59c40257faba76616d2d156e4e1bede5b5 /src/libinput.h
parentab6a409cdcbed8843fcb01852b16da3a56555cd9 (diff)
tablet: widen the serial type to uint64_t
Internally we still use uint32_t because that's all we get from evdev. But eventually we'll have 64 bit serials. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> Reviewed-by: Jason Gerecke <jason.gerecke@wacom.com>
Diffstat (limited to 'src/libinput.h')
-rw-r--r--src/libinput.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libinput.h b/src/libinput.h
index 45a64377..3b797a43 100644
--- a/src/libinput.h
+++ b/src/libinput.h
@@ -1648,7 +1648,7 @@ libinput_tool_unref(struct libinput_tool *tool);
* @param tool The libinput tool
* @return The new tool serial triggering this event
*/
-uint32_t
+uint64_t
libinput_tool_get_serial(struct libinput_tool *tool);
/**