aboutsummaryrefslogtreecommitdiffstats
path: root/libgamepad_get_button_is_pressed.c
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2022-07-26 16:01:13 +0200
committerMattias Andrée <maandree@kth.se>2022-07-26 16:02:05 +0200
commit9de0de4d3d32ab97226fa9868de1fa2290120429 (patch)
tree292473831841529716f97565391303fb9b071c15 /libgamepad_get_button_is_pressed.c
parentUpdate information about Sixaxis (diff)
downloadlibgamepad-9de0de4d3d32ab97226fa9868de1fa2290120429.tar.gz
libgamepad-9de0de4d3d32ab97226fa9868de1fa2290120429.tar.bz2
libgamepad-9de0de4d3d32ab97226fa9868de1fa2290120429.tar.xz
Do not relay on libevdev for button/axis names, an prepare for device specific names, and add reverse lookup functions
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'libgamepad_get_button_is_pressed.c')
-rw-r--r--libgamepad_get_button_is_pressed.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/libgamepad_get_button_is_pressed.c b/libgamepad_get_button_is_pressed.c
index 7ec2f73..2e61297 100644
--- a/libgamepad_get_button_is_pressed.c
+++ b/libgamepad_get_button_is_pressed.c
@@ -2,4 +2,8 @@
#include "common.h"
-extern inline int libgamepad_get_button_is_pressed(struct libgamepad_device *, uint16_t);
+int
+libgamepad_get_button_is_pressed(struct libgamepad_device *device, uint16_t code)
+{
+ return libevdev_get_event_value(device->dev, EV_KEY, (unsigned int)code);
+}