chiark / gitweb /
mechanisms: add mechanisms to change system locale and clock
[elogind.git] / src / logind-seat.h
index b1a8d619a249b31fe3d2501ef2d5c5aff5213a98..b045bde931ab0079ce24c38342657855d9cf40cb 100644 (file)
@@ -42,6 +42,7 @@ struct Seat {
         LIST_HEAD(Session, sessions);
 
         bool in_gc_queue:1;
+        bool started:1;
 
         LIST_FIELDS(Seat, gc_queue);
 };
@@ -62,4 +63,9 @@ int seat_stop(Seat *s);
 int seat_check_gc(Seat *s);
 void seat_add_to_gc_queue(Seat *s);
 
+bool seat_name_is_valid(const char *name);
+char *seat_bus_path(Seat *s);
+
+extern const DBusObjectPathVTable bus_seat_vtable;
+
 #endif