jsfw/hid.h

32 lines
704 B
C
Raw Normal View History

2022-08-30 17:54:56 -05:00
// vi:ft=c
#ifndef HID_H_
#define HID_H_
2022-08-30 08:37:34 -05:00
#include "net.h"
2022-08-30 17:56:56 -05:00
2022-08-31 11:59:06 -05:00
#include <linux/input-event-codes.h>
2022-08-30 08:37:34 -05:00
#include <stdint.h>
2022-08-27 19:29:43 -05:00
2022-08-29 17:27:03 -05:00
typedef uint64_t uniq_t;
2022-08-27 19:29:43 -05:00
2022-08-29 17:27:03 -05:00
typedef struct {
2022-08-30 17:54:56 -05:00
uint16_t abs_indices[ABS_CNT];
uint16_t rel_indices[REL_CNT];
uint16_t key_indices[KEY_CNT];
2022-08-30 08:37:34 -05:00
} DeviceMap;
typedef struct {
int event;
int hidraw;
uniq_t uniq;
char *name;
DeviceMap mapping;
MessageDeviceInfo device_info;
2022-08-29 17:27:03 -05:00
} PhysicalDevice;
2022-08-30 08:37:34 -05:00
void *hid_thread();
void return_device(PhysicalDevice *dev);
2022-08-29 17:27:03 -05:00
PhysicalDevice get_device();
2022-08-30 08:37:34 -05:00
void apply_controller_state(PhysicalDevice *dev, MessageControllerState *state);
2022-08-27 19:29:43 -05:00
#endif