X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=src%2Flogin%2Flogind-button.h;h=f30cba29594d712e59de1c5ba1d70b2a743d73b4;hp=95bb6a52402f166d05c5f46d51eccad57b35d1c1;hb=1a9645229d25059a5b0643824f1ca2b290b26e0f;hpb=1cfc78c91965df340cdde100ad6cb3ed50b28927 diff --git a/src/login/logind-button.h b/src/login/logind-button.h index 95bb6a524..f30cba295 100644 --- a/src/login/logind-button.h +++ b/src/login/logind-button.h @@ -1,11 +1,9 @@ -/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/ - #pragma once /*** This file is part of systemd. - Copyright 2014 Daniel Mack + Copyright 2012 Lennart Poettering systemd is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by @@ -21,24 +19,26 @@ along with systemd; If not, see . ***/ -typedef struct BusEndpoint BusEndpoint; -typedef struct BusEndpointPolicy BusEndpointPolicy; +typedef struct Button Button; -#include "hashmap.h" -#include "bus-policy.h" +#include "logind.h" -struct BusEndpointPolicy { - char *name; - BusPolicyAccess access; -}; +struct Button { + Manager *manager; -struct BusEndpoint { - Hashmap *policy_hash; -}; + sd_event_source *io_event_source; + sd_event_source *check_event_source; -// UNNEEDED int bus_endpoint_new(BusEndpoint **ep); -void bus_endpoint_free(BusEndpoint *endpoint); + char *name; + char *seat; + int fd; -// UNNEEDED int bus_endpoint_add_policy(BusEndpoint *ep, const char *name, BusPolicyAccess access); + bool lid_closed; + bool docked; +}; -int bus_kernel_set_endpoint_policy(int fd, uid_t uid, BusEndpoint *ep); +Button* button_new(Manager *m, const char *name); +void button_free(Button*b); +int button_open(Button *b); +int button_set_seat(Button *b, const char *sn); +int button_check_switches(Button *b);