aboutsummaryrefslogtreecommitdiffhomepage
path: root/evdev.h
diff options
context:
space:
mode:
authorcbdev <cb@cbcdn.com>2018-02-18 21:00:27 +0100
committercbdev <cb@cbcdn.com>2018-02-18 21:00:27 +0100
commit04af77b789d8e294b4f2ad4312453101647820f8 (patch)
tree8648377a97b0bcf3566625732a0b308a65bd4e43 /evdev.h
parenteb943d3547520e7ee0c511a599e69355f516b9ab (diff)
downloadmidimonster-04af77b789d8e294b4f2ad4312453101647820f8.tar.gz
midimonster-04af77b789d8e294b4f2ad4312453101647820f8.tar.bz2
midimonster-04af77b789d8e294b4f2ad4312453101647820f8.zip
Implement evdev output via libevdev
Diffstat (limited to 'evdev.h')
-rw-r--r--evdev.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/evdev.h b/evdev.h
index f1e3b7a..dccc641 100644
--- a/evdev.h
+++ b/evdev.h
@@ -18,10 +18,7 @@ typedef struct /*_evdev_instance_model*/ {
struct libevdev* input_ev;
int exclusive;
- int output_fd;
- char* output_name;
+ int output_enabled;
+ struct libevdev* output_proto;
struct libevdev_uinput* output_ev;
-
- size_t nenabled_events;
- struct input_event* enabled_events;
} evdev_instance_data;