blob: 786212174a5f40f78c46458f980781bb532349ec (
plain) (
tree)
|
|
/* See LICENSE file for copyright and license details. */
#include "libgamepad.h"
#include <sys/stat.h>
#include <ctype.h>
#include <dirent.h>
#include <errno.h>
#include <fcntl.h>
#include <limits.h>
#include <math.h>
#include <stddef.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <strings.h>
#include <time.h>
#include <unistd.h>
#include <libevdev/libevdev.h>
#include <libudev.h>
#define ELEMSOF(A) (sizeof(A) / sizeof(*(A)))
struct libgamepad_attachment_monitor {
struct udev *udev;
struct udev_monitor *monitor;
};
extern const char *libgamepad_button_names__[
#include "button.count"
];
extern const char *libgamepad_absolute_axis_names__[
#include "absolute-axis.count"
];
extern const char *libgamepad_relative_axis_names__[
#include "relative-axis.count"
];
|