diff options
Diffstat (limited to 'util/cbfstool/eventlog.h')
-rw-r--r-- | util/cbfstool/eventlog.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/util/cbfstool/eventlog.h b/util/cbfstool/eventlog.h index baecb21db6..1911b77e82 100644 --- a/util/cbfstool/eventlog.h +++ b/util/cbfstool/eventlog.h @@ -3,8 +3,13 @@ #ifndef EVENTLOG_H_ #define EVENTLOG_H_ +#include <stdint.h> + struct event_header; +struct buffer; void eventlog_print_event(const struct event_header *event, int count); +int eventlog_init_event(const struct buffer *buf, uint8_t type, + const void *data, int data_size); #endif // EVENTLOG_H_ |