X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=src%2Fcondition.h;h=84028028c40f75721e6b23e76ce5097656a43cfa;hp=2f2689cc6da7b879cc8a500fbab70c6f360b71b0;hb=687d0825a4636b1841dc0c01fbcbf3160dddab74;hpb=36af55d99711e9accdf42d8a7df60e069f4086c0 diff --git a/src/condition.h b/src/condition.h index 2f2689cc6..84028028c 100644 --- a/src/condition.h +++ b/src/condition.h @@ -28,8 +28,11 @@ typedef enum ConditionType { CONDITION_PATH_EXISTS, + 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 @@ -38,12 +41,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);