chiark / gitweb /
elogind-user: add pam_unix account module
[elogind.git] / src / login / eloginctl.h
1 #pragma once
2 #ifndef ELOGIND_SRC_LOGIN_ELOGINCTL_H_INCLUDED
3 #define ELOGIND_SRC_LOGIN_ELOGINCTL_H_INCLUDED
4
5 /***
6   This file is part of elogind.
7
8   Copyright 2017 Sven Eden
9
10   elogind is free software; you can redistribute it and/or modify it
11   under the terms of the GNU Lesser General Public License as published by
12   the Free Software Foundation; either version 2.1 of the License, or
13   (at your option) any later version.
14
15   elogind is distributed in the hope that it will be useful, but
16   WITHOUT ANY WARRANTY; without even the implied warranty of
17   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18   Lesser General Public License for more details.
19
20   You should have received a copy of the GNU Lesser General Public License
21   along with elogind; If not, see <http://www.gnu.org/licenses/>.
22 ***/
23
24
25 #include "sd-bus.h"
26
27
28 typedef enum elogind_action {
29         _ACTION_INVALID,
30         ACTION_HALT,
31         ACTION_POWEROFF,
32         ACTION_REBOOT,
33         ACTION_KEXEC,
34         ACTION_SUSPEND,
35         ACTION_HIBERNATE,
36         ACTION_HYBRID_SLEEP,
37         ACTION_CANCEL_SHUTDOWN,
38         _ACTION_MAX
39 } elogind_action;
40
41
42 int  elogind_cancel_shutdown(sd_bus *bus);
43 void elogind_cleanup(void);
44 void polkit_agent_open_if_enabled(void);
45 int  start_special(int argc, char *argv[], void *userdata);
46
47
48 #endif // ELOGIND_SRC_LOGIN_ELOGINCTL_H_INCLUDED