Pengfei Liu | c181a98 | 2020-01-07 19:27:13 +0800 | [diff] [blame] | 1 | #ifndef _DVR_LIST_FILE_H_ |
2 | #define _DVR_LIST_FILE_H_ | ||||
3 | |||||
4 | #ifdef __cplusplus | ||||
5 | extern "C" { | ||||
6 | #endif | ||||
7 | |||||
8 | typedef struct Segment_ListInfo_s { | ||||
9 | } Segment_ListInfo; | ||||
10 | |||||
11 | int segment_list_file_store(const char *path, Segment_ListInfo *p_info); | ||||
12 | |||||
13 | int segment_list_file_load(const char *path, Segment_ListInfo *info); | ||||
14 | |||||
15 | #ifdef __cplusplus | ||||
16 | } | ||||
17 | #endif | ||||
18 | |||||
19 | #endif /*END _DVR_LIST_FILE_H_*/ |