X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=src%2Fcondition.h;h=0ce713bc16f14bf498ee799c48e8d5ecea238562;hp=b9d3f34aefb07642f5f92e1ac57a5241abd3589e;hb=fe783b03419181bed69003ffdd73132426de246a;hpb=d257ddef22ff1a1b98e6172799819e6511b1bcfb diff --git a/src/condition.h b/src/condition.h index b9d3f34ae..0ce713bc1 100644 --- a/src/condition.h +++ b/src/condition.h @@ -28,7 +28,9 @@ typedef enum ConditionType { CONDITION_PATH_EXISTS, + CONDITION_DIRECTORY_NOT_EMPTY, CONDITION_KERNEL_COMMAND_LINE, + CONDITION_VIRTUALIZATION, CONDITION_NULL, _CONDITION_TYPE_MAX, _CONDITION_TYPE_INVALID = -1 @@ -37,12 +39,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);