summaryrefslogtreecommitdiff
path: root/src/udev-seat.h
diff options
context:
space:
mode:
authorRob Bradford <rob@linux.intel.com>2013-05-31 18:09:54 +0100
committerJonas Ã…dahl <jadahl@gmail.com>2013-11-16 21:54:06 +0100
commita16790bcd71066b3e9905aa8204e2d44b5795efc (patch)
tree1e061e0c7ec85b32b54ce45dd908babceec62578 /src/udev-seat.h
parent56ed9258da51fb12e54f172ad569a5a11e9dc677 (diff)
downloadlibinput-a16790bcd71066b3e9905aa8204e2d44b5795efc.tar.gz
udev-seat: Rename udev_seat to udev_input
This is a pure rename of the structure, functions and local variables in preparation of the separation of the seat from the other udev input handling.
Diffstat (limited to 'src/udev-seat.h')
-rw-r--r--src/udev-seat.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/udev-seat.h b/src/udev-seat.h
index 0cfafd9d..dbc6269d 100644
--- a/src/udev-seat.h
+++ b/src/udev-seat.h
@@ -27,7 +27,7 @@
#include "compositor.h"
-struct udev_seat {
+struct udev_input {
struct weston_seat base;
struct wl_list devices_list;
struct udev_monitor *udev_monitor;
@@ -35,11 +35,11 @@ struct udev_seat {
char *seat_id;
};
-int udev_seat_enable(struct udev_seat *seat, struct udev *udev);
-void udev_seat_disable(struct udev_seat *seat);
-struct udev_seat *udev_seat_create(struct weston_compositor *c,
+int udev_input_enable(struct udev_input *input, struct udev *udev);
+void udev_input_disable(struct udev_input *input);
+struct udev_input *udev_input_create(struct weston_compositor *c,
struct udev *udev,
const char *seat_id);
-void udev_seat_destroy(struct udev_seat *seat);
+void udev_input_destroy(struct udev_input *input);
#endif