chiark / gitweb /
update NEWS
[elogind.git] / src / login / logind-device.h
index bdb974172741918a5cef2fe195ef6d9ed10579d5..c273d2bfa05e1cb2a24cde634e1b717666613427 100644 (file)
@@ -1,7 +1,6 @@
 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
 
-#ifndef foologinddevicehfoo
-#define foologinddevicehfoo
+#pragma once
 
 /***
   This file is part of systemd.
@@ -28,21 +27,21 @@ 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);
-
-#endif