Skip to content

NET_SDK_REC_TIME

Structure Definition

1
2
3
4
5
6
typedef struct _net_sdk_rec_time
{
    DWORD dwChannel;   
    DD_TIME startTime; 
    DD_TIME stopTime;  
} NET_SDK_REC_TIME;
1
2
3
4
5
6
7
[StructLayout(LayoutKind.Sequential, Pack = 4)]
public struct NET_SDK_REC_TIME
{
    public UInt32 dwChannel;
    public DD_TIME startTime;
    public DD_TIME stopTime;
}

Function Description

The video file information structure based on time.

Member Description

Member Type Remark
dwChannel DWORD Channel number.
startTime DD_TIME The start time of this video recording.
stopTime DD_TIME The time when the video recording stops.
Error Code