490bd909103dcfc715bd2665671bcf17fa8f65de
[platform/core/system/dlog.git] / src / logger / dlogutil_line.h
1 #pragma once
2
3 #include <log_file.h>
4
5 struct dlogutil_line_params {
6         bool monitor;
7         bool is_dumping;
8         struct log_file file;
9         log_id_t buf_id;
10         char *file_path;
11         struct dlogutil_filter_options *filter;
12 };
13
14 bool initialize_dlogutil_line_params(struct dlogutil_line_params *params);
15 int get_dlogutil_line_params(const char *cmdl, struct dlogutil_line_params *params);
16 void free_dlogutil_line_params(struct dlogutil_line_params *params);
17
18 void reset_getopt_internals(void *fake);