summaryrefslogtreecommitdiff
path: root/src/login/logind-device.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/login/logind-device.h')
-rw-r--r--src/login/logind-device.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/login/logind-device.h b/src/login/logind-device.h
index 3b153568cb..fa6eda7e55 100644
--- a/src/login/logind-device.h
+++ b/src/login/logind-device.h
@@ -27,19 +27,22 @@ typedef struct Device Device;
#include "util.h"
#include "logind.h"
#include "logind-seat.h"
+#include "logind-session-device.h"
struct Device {
Manager *manager;
char *sysfs;
Seat *seat;
+ bool master;
dual_timestamp timestamp;
LIST_FIELDS(struct Device, devices);
+ LIST_HEAD(SessionDevice, session_devices);
};
-Device* device_new(Manager *m, const char *sysfs);
+Device* device_new(Manager *m, const char *sysfs, bool master);
void device_free(Device *d);
void device_attach(Device *d, Seat *s);
void device_detach(Device *d);