diff options
author | Lennart Poettering <lennart@poettering.net> | 2012-05-08 19:02:25 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2012-05-08 19:02:25 +0200 |
commit | d889a2069a87e4617b32ddbdeace5a53a12c699d (patch) | |
tree | 7b83f31c7e3f02fda73d4e208598bd93713f9685 /src/login/logind-inhibit.h | |
parent | 6edd7d0a09171ea5ae8e01b7b1cbcb0bdfbfeb16 (diff) |
logind: implement suspend/hibernate calls with inhibition logic
Diffstat (limited to 'src/login/logind-inhibit.h')
-rw-r--r-- | src/login/logind-inhibit.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/login/logind-inhibit.h b/src/login/logind-inhibit.h index 6364b00586..4377f00429 100644 --- a/src/login/logind-inhibit.h +++ b/src/login/logind-inhibit.h @@ -23,11 +23,10 @@ ***/ typedef struct Inhibitor Inhibitor; +typedef enum InhibitWhat InhibitWhat; #include "list.h" #include "util.h" -#include "logind.h" -#include "logind-seat.h" typedef enum InhibitWhat { INHIBIT_SHUTDOWN = 1, @@ -44,6 +43,9 @@ typedef enum InhibitMode { _INHIBIT_MODE_INVALID = -1 } InhibitMode; +#include "logind.h" +#include "logind-seat.h" + struct Inhibitor { Manager *manager; |