diff options
Diffstat (limited to 'util/cbfstool/eventlog.h')
-rw-r--r-- | util/cbfstool/eventlog.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/util/cbfstool/eventlog.h b/util/cbfstool/eventlog.h index 1911b77e82..6cc39fbf88 100644 --- a/util/cbfstool/eventlog.h +++ b/util/cbfstool/eventlog.h @@ -8,7 +8,13 @@ struct event_header; struct buffer; -void eventlog_print_event(const struct event_header *event, int count); +enum eventlog_timezone { + EVENTLOG_TIMEZONE_LOCALTIME = 0, + EVENTLOG_TIMEZONE_UTC, +}; + +void eventlog_print_event(const struct event_header *event, int count, + enum eventlog_timezone tz); int eventlog_init_event(const struct buffer *buf, uint8_t type, const void *data, int data_size); |