X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=src%2Flogin%2Flogind-device.h;h=fa6eda7e553f2bbce968c54446e76a5f0d879bfb;hb=118ecf32425a590ea266b5c2b6de7962bb242356;hp=bdb974172741918a5cef2fe195ef6d9ed10579d5;hpb=5430f7f2bc7330f3088b894166bf3524a067e3d8;p=elogind.git diff --git a/src/login/logind-device.h b/src/login/logind-device.h index bdb974172..fa6eda7e5 100644 --- a/src/login/logind-device.h +++ b/src/login/logind-device.h @@ -1,7 +1,6 @@ /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/ -#ifndef foologinddevicehfoo -#define foologinddevicehfoo +#pragma once /*** This file is part of systemd. @@ -28,21 +27,22 @@ typedef struct Device Device; #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