Attempt a mode switch

This commit is contained in:
Denis 2023-11-12 18:24:51 +01:00
parent 6bdbbd201d
commit 5f4af5880b
No known key found for this signature in database
GPG key ID: DD9B63F805CF5C03
15 changed files with 607 additions and 7 deletions

View file

@ -12,4 +12,9 @@ typedef struct message {
size_t ev_size;
volatile uint32_t flags;
} message_t;
} message_t;
#define INPUT_FILTER_RESULT_OK 0
#define INPUT_FILTER_RESULT_DO_NOT_EMIT 1
typedef int (*input_filter_t)(struct input_event*, size_t*, uint32_t*);