12345678910111213141516171819202122232425262728 |
- #ifndef __USFCDEV_H__
- #define __USFCDEV_H__
- #include <linux/input.h>
- #define TSC_EVENT_TYPE_IND 0
- #define MAX_EVENT_TYPE_NUM 1
- bool usfcdev_register(
- uint16_t event_type_ind,
- bool (*match_cb)(uint16_t, struct input_dev *dev));
- void usfcdev_unregister(uint16_t event_type_ind);
- bool usfcdev_set_filter(uint16_t event_type_ind, bool filter);
- #endif
|