mirror of
https://gitlab.freedesktop.org/libinput/libinput.git
synced 2026-02-04 09:20:29 +01:00
Always use uint64_t for internal timestamp values
In most places we use 64 bit unsigned integers; lets be consistent and use it everywhere. Signed-off-by: Jonas Ådahl <jadahl@gmail.com> Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
This commit is contained in:
parent
4bd1d5c6d1
commit
85f7bad759
3 changed files with 7 additions and 7 deletions
|
|
@ -203,7 +203,7 @@ struct tp_touch {
|
|||
struct {
|
||||
enum touch_palm_state state;
|
||||
struct device_coords first; /* first coordinates if is_palm == true */
|
||||
uint32_t time; /* first timestamp if is_palm == true */
|
||||
uint64_t time; /* first timestamp if is_palm == true */
|
||||
} palm;
|
||||
|
||||
struct {
|
||||
|
|
|
|||
|
|
@ -129,7 +129,7 @@ update_key_down_count(struct evdev_device *device, int code, int pressed)
|
|||
|
||||
void
|
||||
evdev_keyboard_notify_key(struct evdev_device *device,
|
||||
uint32_t time,
|
||||
uint64_t time,
|
||||
int key,
|
||||
enum libinput_key_state state)
|
||||
{
|
||||
|
|
@ -144,7 +144,7 @@ evdev_keyboard_notify_key(struct evdev_device *device,
|
|||
|
||||
void
|
||||
evdev_pointer_notify_physical_button(struct evdev_device *device,
|
||||
uint32_t time,
|
||||
uint64_t time,
|
||||
int button,
|
||||
enum libinput_button_state state)
|
||||
{
|
||||
|
|
@ -159,7 +159,7 @@ evdev_pointer_notify_physical_button(struct evdev_device *device,
|
|||
|
||||
void
|
||||
evdev_pointer_notify_button(struct evdev_device *device,
|
||||
uint32_t time,
|
||||
uint64_t time,
|
||||
int button,
|
||||
enum libinput_button_state state)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -360,18 +360,18 @@ evdev_notify_resumed_device(struct evdev_device *device);
|
|||
|
||||
void
|
||||
evdev_keyboard_notify_key(struct evdev_device *device,
|
||||
uint32_t time,
|
||||
uint64_t time,
|
||||
int key,
|
||||
enum libinput_key_state state);
|
||||
|
||||
void
|
||||
evdev_pointer_notify_button(struct evdev_device *device,
|
||||
uint32_t time,
|
||||
uint64_t time,
|
||||
int button,
|
||||
enum libinput_button_state state);
|
||||
void
|
||||
evdev_pointer_notify_physical_button(struct evdev_device *device,
|
||||
uint32_t time,
|
||||
uint64_t time,
|
||||
int button,
|
||||
enum libinput_button_state state);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue