chiark / gitweb /
mechanisms: add mechanisms to change system locale and clock
[elogind.git] / src / logind.h
index 7a3121629e65e5a317c50e7470b450d47c46b194..95db35ddfda6ccefa8cf7c0ddb6b48199b255376 100644 (file)
@@ -35,7 +35,6 @@
 /* TODO:
  *
  * recreate VTs when disallocated
- * udev rules
  * PAM rewrite
  * spawn user systemd
  * dbus API
@@ -71,14 +70,14 @@ struct Manager {
         int bus_fd;
         int epoll_fd;
 
-        int n_autovts;
+        unsigned n_autovts;
 
         Seat *vtconsole;
 
         char *cgroup_path;
         char **controllers, **reset_controllers;
 
-        char **kill_only_users, **kill_exlude_users;
+        char **kill_only_users, **kill_exclude_users;
 
         bool kill_user_processes;
 };
@@ -110,4 +109,6 @@ void manager_gc(Manager *m);
 
 bool x11_display_is_local(const char *display);
 
+extern const DBusObjectPathVTable bus_manager_vtable;
+
 #endif