output devices

This commit is contained in:
Denis Benato 2023-11-02 14:19:02 +01:00
parent 99589163f3
commit 75abf3c6e8
9 changed files with 66 additions and 68 deletions

View file

@ -26,7 +26,9 @@ typedef struct output_dev {
uint32_t max_events;
uint32_t events_count;
struct input_event events_list;
struct input_event *events_list;
} output_dev_t;
int create_output_dev(const char* uinput_path, const char* name, output_dev_type_t type);
int create_output_dev(const char* uinput_path, const char* name, output_dev_type_t type);
void *output_dev_thread_func(void *ptr);