aboutsummaryrefslogblamecommitdiffstats
path: root/common.h
blob: aec4277b28d9f92088c960d5807972d931c42605 (plain) (tree)
1
2
3
4
5
6
7
8
9


                                                         
                     




                   
                 




                   
                    






                              


                                             



                                      

 






                                    










                                                    
/* 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;
};


struct libgamepad_device_internals {
	int close_fd;
	int require_sync;
	struct libevdev *dev;
};


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"
];