From 078634deed21c746c05eab03c045b353d5d737a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20=C3=85dahl?= Date: Wed, 19 Mar 2014 23:38:45 +0100 Subject: [PATCH] Structure libinput_seat struct MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jonas Ã…dahl --- src/libinput-private.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/libinput-private.h b/src/libinput-private.h index d373217f..21627b06 100644 --- a/src/libinput-private.h +++ b/src/libinput-private.h @@ -57,10 +57,12 @@ struct libinput_seat { struct list devices_list; void *user_data; int refcount; - uint32_t slot_map; + libinput_seat_destroy_func destroy; + char *physical_name; char *logical_name; - libinput_seat_destroy_func destroy; + + uint32_t slot_map; }; struct libinput_device {