summaryrefslogtreecommitdiffstats
path: root/src/ck-log-event.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ck-log-event.h')
-rw-r--r--src/ck-log-event.h8
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;