diff options
author | Drew DeVault <sir@cmpwn.com> | 2017-09-22 10:43:48 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-22 10:43:48 -0400 |
commit | 087894ae99a680d9228d03bae66becc6112682a1 (patch) | |
tree | 3f3a6ff372ccdd720dabee9b100b9964ab69f0aa /include | |
parent | b6cf9b14a420fb02d23c85fa22965a697747ad80 (diff) | |
parent | e38248f34c3eed879486347f0c0c5db3ceca4a68 (diff) |
Merge pull request #152 from acrisci/feature/wlr-seat-axis-events
wlr-seat cursor axis events
Diffstat (limited to 'include')
-rw-r--r-- | include/wlr/types/wlr_seat.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/wlr/types/wlr_seat.h b/include/wlr/types/wlr_seat.h index 4b433ccb..f992b2f2 100644 --- a/include/wlr/types/wlr_seat.h +++ b/include/wlr/types/wlr_seat.h @@ -109,4 +109,7 @@ void wlr_seat_pointer_send_motion(struct wlr_seat *wlr_seat, uint32_t time, void wlr_seat_pointer_send_button(struct wlr_seat *wlr_seat, uint32_t time, uint32_t button, uint32_t state); +void wlr_seat_pointer_send_axis(struct wlr_seat *wlr_seat, uint32_t time, + enum wlr_axis_orientation orientation, double value); + #endif |