]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/login/logind-action.h
Add __attribute__((const, pure, format)) in various places
[thirdparty/systemd.git] / src / login / logind-action.h
CommitLineData
23406ce5
LP
1/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2
3#ifndef foologindactionhfoo
4#define foologindactionhfoo
5
6/***
7 This file is part of systemd.
8
9 Copyright 2012 Lennart Poettering
10
11 systemd is free software; you can redistribute it and/or modify it
12 under the terms of the GNU Lesser General Public License as published by
13 the Free Software Foundation; either version 2.1 of the License, or
14 (at your option) any later version.
15
16 systemd is distributed in the hope that it will be useful, but
17 WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 Lesser General Public License for more details.
20
21 You should have received a copy of the GNU Lesser General Public License
22 along with systemd; If not, see <http://www.gnu.org/licenses/>.
23***/
24
25typedef enum HandleAction {
26 HANDLE_IGNORE,
27 HANDLE_POWEROFF,
28 HANDLE_REBOOT,
29 HANDLE_HALT,
30 HANDLE_KEXEC,
31 HANDLE_SUSPEND,
32 HANDLE_HIBERNATE,
33 HANDLE_HYBRID_SLEEP,
34 HANDLE_LOCK,
35 _HANDLE_ACTION_MAX,
36 _HANDLE_ACTION_INVALID = -1
37} HandleAction;
38
39#include "logind.h"
40#include "logind-inhibit.h"
41
42int manager_handle_action(
43 Manager *m,
44 InhibitWhat inhibit_key,
45 HandleAction handle,
46 bool ignore_inhibited,
47 bool is_edge);
48
44a6b1b6
ZJS
49const char* handle_action_to_string(HandleAction h) _const_;
50HandleAction handle_action_from_string(const char *s) _pure_;
23406ce5 51
e8e581bf 52int config_parse_handle_action(const char *unit, const char *filename, unsigned line, const char *section, const char *lvalue, int ltype, const char *rvalue, void *data, void *userdata);
23406ce5
LP
53
54#endif