diff options
author | Mattias Andrée <maandree@kth.se> | 2022-07-23 14:39:44 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2022-07-23 14:40:11 +0200 |
commit | d49393b339c47733c2eda207b8ba03d61db0a5a3 (patch) | |
tree | bc609622c3cabe1dc6b59970cb8a9a8364a561a7 /common.h | |
download | libgamepad-d49393b339c47733c2eda207b8ba03d61db0a5a3.tar.gz libgamepad-d49393b339c47733c2eda207b8ba03d61db0a5a3.tar.bz2 libgamepad-d49393b339c47733c2eda207b8ba03d61db0a5a3.tar.xz |
First commit
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'common.h')
-rw-r--r-- | common.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/common.h b/common.h new file mode 100644 index 0000000..09f6193 --- /dev/null +++ b/common.h @@ -0,0 +1,24 @@ +/* See LICENSE file for copyright and license details. */ +#include "libgamepad.h" + +#include <ctype.h> +#include <dirent.h> +#include <errno.h> +#include <fcntl.h> +#include <limits.h> +#include <stddef.h> +#include <stdint.h> +#include <stdio.h> +#include <stdlib.h> +#include <string.h> +#include <time.h> +#include <unistd.h> + +#include <libevdev/libevdev.h> +#include <libudev.h> + + +struct libgamepad_attachment_monitor { + struct udev *udev; + struct udev_monitor *monitor; +}; |