summaryrefslogtreecommitdiff
path: root/src/login/elogind-dbus.h
diff options
context:
space:
mode:
authorSven Eden <yamakuzure@gmx.net>2017-06-28 10:41:24 +0200
committerSven Eden <yamakuzure@gmx.net>2017-06-28 10:41:24 +0200
commit3e6d9bb47a4f0f7b717de2691b1b962f65851869 (patch)
tree39b298b20d3b82b04cdabec76af65504b2cc85aa /src/login/elogind-dbus.h
parent47ae1c82f5cbb9ad3876962c39d21b1b13cff101 (diff)
Prep v231.2: Move elogind specific code in logind-dbus.c to elogind-dbus.c
Diffstat (limited to 'src/login/elogind-dbus.h')
-rw-r--r--src/login/elogind-dbus.h41
1 files changed, 41 insertions, 0 deletions
diff --git a/src/login/elogind-dbus.h b/src/login/elogind-dbus.h
new file mode 100644
index 000000000..4b7640d7d
--- /dev/null
+++ b/src/login/elogind-dbus.h
@@ -0,0 +1,41 @@
+#pragma once
+#ifndef ELOGIND_SRC_LOGIN_ELOGIND_DBUS_H_INCLUDED
+#define ELOGIND_SRC_LOGIN_ELOGIND_DBUS_H_INCLUDED
+
+/***
+ This file is part of elogind.
+
+ Copyright 2017 Sven Eden
+
+ elogind is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ elogind is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ Lesser General Public License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with elogind; If not, see <http://www.gnu.org/licenses/>.
+***/
+
+#include "logind.h"
+
+int have_multiple_sessions(Manager *m, uid_t uid);
+int manager_scheduled_shutdown_handler(sd_event_source *s, uint64_t usec,
+ void *userdata);
+int method_hibernate (sd_bus_message *message, void *userdata, sd_bus_error *error);
+int method_hybrid_sleep(sd_bus_message *message, void *userdata, sd_bus_error *error);
+int method_poweroff (sd_bus_message *message, void *userdata, sd_bus_error *error);
+int method_reboot (sd_bus_message *message, void *userdata, sd_bus_error *error);
+int method_suspend (sd_bus_message *message, void *userdata, sd_bus_error *error);
+int verify_shutdown_creds(Manager *m, sd_bus_message *message, InhibitWhat w,
+ bool interactive, const char *action,
+ const char *action_multiple_sessions,
+ const char *action_ignore_inhibit,
+ sd_bus_error *error);
+
+
+#endif // ELOGIND_SRC_LOGIN_ELOGIND_DBUS_H_INCLUDED