RECORD_SEARCH_RESULT
- Definition:
typedef struct tagRecordSearchResult
{
int record_id;
char camera_id[CAMERA_ID_LEN];
SYSTEMTIME start_time;
SYSTEMTIME end_time;
BYTE monitor_flag;
char file_path[256];
}RECORD_SEARCH_RESULT;
- Expain:
RECORD_SEARCH_RESULT is result of searching record files
| Member | Expain |
|---|---|
| record_id | Record file's ID |
| camera_id | Camera's ID |
| start_time | Record's start time |
| end_time | Record's stop time |
| monitor_flag | Alarm flag of camera |
| file_path | Record file's saving path |