X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=src%2Flogin%2Flogind-device.h;h=927068e00abe9edd81b157f2f63a64996a57bea1;hp=bdb974172741918a5cef2fe195ef6d9ed10579d5;hb=a5c28308446550e0966825472babdf123fc976ac;hpb=5430f7f2bc7330f3088b894166bf3524a067e3d8 diff --git a/src/login/logind-device.h b/src/login/logind-device.h index bdb974172..927068e00 100644 --- a/src/login/logind-device.h +++ b/src/login/logind-device.h @@ -1,7 +1,4 @@ -/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/ - -#ifndef foologinddevicehfoo -#define foologinddevicehfoo +#pragma once /*** This file is part of systemd. @@ -25,24 +22,22 @@ typedef struct Device Device; #include "list.h" -#include "util.h" -#include "logind.h" #include "logind-seat.h" +#include "logind-session-device.h" struct Device { Manager *manager; char *sysfs; Seat *seat; + bool master; dual_timestamp timestamp; LIST_FIELDS(struct Device, devices); + LIST_HEAD(SessionDevice, session_devices); }; -Device* device_new(Manager *m, const char *sysfs); +Device* device_new(Manager *m, const char *sysfs, bool master); void device_free(Device *d); void device_attach(Device *d, Seat *s); -void device_detach(Device *d); - -#endif