X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=src%2Fcondition.h;h=ff896a793a888a6ea953feda956c258eec38124e;hp=4e0d63cd515236f1e3fc526d3293ccea1b77e46f;hb=e3e9cc803e28185cf32feb3cccc092ec9bcff4ff;hpb=52661efd21608dc7e0ac26b714a9254ed6180ddb diff --git a/src/condition.h b/src/condition.h index 4e0d63cd5..ff896a793 100644 --- a/src/condition.h +++ b/src/condition.h @@ -28,7 +28,13 @@ typedef enum ConditionType { CONDITION_PATH_EXISTS, + CONDITION_PATH_EXISTS_GLOB, + CONDITION_PATH_IS_DIRECTORY, + CONDITION_DIRECTORY_NOT_EMPTY, CONDITION_KERNEL_COMMAND_LINE, + CONDITION_VIRTUALIZATION, + CONDITION_SECURITY, + CONDITION_NULL, _CONDITION_TYPE_MAX, _CONDITION_TYPE_INVALID = -1 } ConditionType; @@ -36,12 +42,14 @@ typedef enum ConditionType { typedef struct Condition { ConditionType type; char *parameter; - bool negate; + + bool trigger:1; + bool negate:1; LIST_FIELDS(struct Condition, conditions); } Condition; -Condition* condition_new(ConditionType type, const char *parameter, bool negate); +Condition* condition_new(ConditionType type, const char *parameter, bool trigger, bool negate); void condition_free(Condition *c); void condition_free_list(Condition *c);