diff options
author | Lennart Poettering <lennart@poettering.net> | 2011-05-26 02:21:16 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2011-06-21 19:29:44 +0200 |
commit | 3f49d45a45c6c585098590174c3245d2d9bdde0a (patch) | |
tree | a932ff68def9c8ec6d9152e0e5eb47b98f832052 /src/logind-seat.h | |
parent | bd253d1b910a003c1d87f1f58a6afabd4f946ce5 (diff) |
logind: implement D-Bus properties
Diffstat (limited to 'src/logind-seat.h')
-rw-r--r-- | src/logind-seat.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/logind-seat.h b/src/logind-seat.h index b1a8d619a2..b045bde931 100644 --- a/src/logind-seat.h +++ b/src/logind-seat.h @@ -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 |