X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=src%2Flogin%2Flogind-button.h;h=80d93c7e6bdf691d4ffafbe803524ee7cd9d6479;hb=2c0a91fedc150195f54d91bf75515e4bfff0d753;hp=95bb6a52402f166d05c5f46d51eccad57b35d1c1;hpb=1cfc78c91965df340cdde100ad6cb3ed50b28927;p=elogind.git diff --git a/src/login/logind-button.h b/src/login/logind-button.h index 95bb6a524..80d93c7e6 100644 --- a/src/login/logind-button.h +++ b/src/login/logind-button.h @@ -5,7 +5,7 @@ /*** 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 +21,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);