]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/login/logind-session-device.h
util-lib: split string parsing related calls from util.[ch] into parse-util.[ch]
[thirdparty/systemd.git] / src / login / logind-session-device.h
CommitLineData
118ecf32
DH
1/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2
3#pragma once
4
5/***
6 This file is part of systemd.
7
8 Copyright 2013 David Herrmann
9
10 systemd 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 systemd 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 systemd; If not, see <http://www.gnu.org/licenses/>.
22***/
23
24typedef enum DeviceType DeviceType;
25typedef struct SessionDevice SessionDevice;
26
27#include "list.h"
118ecf32 28#include "logind.h"
118ecf32
DH
29
30enum DeviceType {
31 DEVICE_TYPE_UNKNOWN,
118ecf32
DH
32 DEVICE_TYPE_DRM,
33 DEVICE_TYPE_EVDEV,
34};
35
36struct SessionDevice {
37 Session *session;
38 Device *device;
39
40 dev_t dev;
41 char *node;
42 int fd;
43 bool active;
44 DeviceType type;
45
46 LIST_FIELDS(struct SessionDevice, sd_by_device);
47};
48
49int session_device_new(Session *s, dev_t dev, SessionDevice **out);
50void session_device_free(SessionDevice *sd);
51void session_device_complete_pause(SessionDevice *sd);
52
53void session_device_resume_all(Session *s);
54void session_device_pause_all(Session *s);
d7bd01b5 55unsigned int session_device_try_pause_all(Session *s);