diff options
author | Michael Biebl <biebl@debian.org> | 2009-07-14 17:41:18 +0200 |
---|---|---|
committer | Michael Biebl <biebl@debian.org> | 2009-07-14 17:41:18 +0200 |
commit | b78e497569d2fc75e25c65c3f9f78c8580887c0b (patch) | |
tree | 3f8bf4dd1b6be9554b2da77d82c400697121df24 /src/ck-log-event.h | |
parent | 1f223c41689bbbd64f8749ff7c09967a49407022 (diff) | |
download | consolekit-upstream/0.3.0.tar.gz |
Imported Upstream version 0.3.0upstream/0.3.0
Diffstat (limited to 'src/ck-log-event.h')
-rw-r--r-- | src/ck-log-event.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/ck-log-event.h b/src/ck-log-event.h index 149f49b..64dec58 100644 --- a/src/ck-log-event.h +++ b/src/ck-log-event.h @@ -27,7 +27,8 @@ G_BEGIN_DECLS typedef enum { - CK_LOG_EVENT_START = 0, + CK_LOG_EVENT_NONE = 0, + CK_LOG_EVENT_START, CK_LOG_EVENT_STOP, CK_LOG_EVENT_SYSTEM_START, CK_LOG_EVENT_SYSTEM_STOP, @@ -44,6 +45,10 @@ typedef enum typedef struct { +} CkLogNoneEvent; + +typedef struct +{ } CkLogSystemStopEvent; typedef struct @@ -117,6 +122,7 @@ typedef struct typedef struct { union { + CkLogNoneEvent none; CkLogSystemRestartEvent system_start; CkLogSystemStopEvent system_stop; CkLogSystemRestartEvent system_restart; |