Changeset 60ebe63 in mainline for uspace/lib/c/include/io/input.h


Ignore:
Timestamp:
2022-11-08T21:20:23Z (18 months ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
master, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
7bcd15f
Parents:
3a6d44b7
Message:

Store positioning device ID in position events

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/include/io/input.h

    r3a6d44b7 r60ebe63  
    11/*
    2  * Copyright (c) 2021 Jiri Svoboda
     2 * Copyright (c) 2022 Jiri Svoboda
    33 * All rights reserved.
    44 *
     
    5050        errno_t (*active)(input_t *);
    5151        errno_t (*deactive)(input_t *);
    52         errno_t (*key)(input_t *, kbd_event_type_t, keycode_t, keymod_t, char32_t);
    53         errno_t (*move)(input_t *, int, int);
    54         errno_t (*abs_move)(input_t *, unsigned, unsigned, unsigned, unsigned);
    55         errno_t (*button)(input_t *, int, int);
    56         errno_t (*dclick)(input_t *, int);
     52        errno_t (*key)(input_t *, unsigned, kbd_event_type_t, keycode_t,
     53            keymod_t, char32_t);
     54        errno_t (*move)(input_t *, unsigned, int, int);
     55        errno_t (*abs_move)(input_t *, unsigned, unsigned, unsigned, unsigned,
     56            unsigned);
     57        errno_t (*button)(input_t *, unsigned, int, int);
     58        errno_t (*dclick)(input_t *, unsigned, int);
    5759} input_ev_ops_t;
    5860
Note: See TracChangeset for help on using the changeset viewer.