path: add libinput_path_create_context instead of libinput_create_from_path
[platform/upstream/libinput.git] / test / litest.h
index 5dbc0da..e3f599f 100644 (file)
@@ -40,6 +40,7 @@ enum litest_device_type {
        LITEST_KEYBOARD,
        LITEST_TRACKPOINT,
        LITEST_MOUSE,
+       LITEST_WACOM_TOUCH,
 };
 
 enum litest_device_feature {
@@ -51,12 +52,14 @@ enum litest_device_feature {
        LITEST_KEYS = 1 << 3,
        LITEST_POINTER = 1 << 4,
        LITEST_WHEEL = 1 << 5,
+       LITEST_TOUCH = 1 << 6,
 };
 
 struct litest_device {
        struct libevdev *evdev;
        struct libevdev_uinput *uinput;
        struct libinput *libinput;
+       struct libinput_device *libinput_device;
        struct litest_device_interface *interface;
 };