Skip to content

NET_DVR_SCHEDTIME,LPNET_DVR_SCHEDTIME

Structure Definition

1
2
3
4
5
6
7
typedef struct
{
    unsigned char byStartHour; 
    unsigned char byStartMin;  
    unsigned char byStopHour;  
    unsigned char byStopMin;   
} NET_DVR_SCHEDTIME, * LPNET_DVR_SCHEDTIME;
1
2
3
4
5
6
7
8
[StructLayout(LayoutKind.Sequential, Pack = 4)]
public struct NET_DVR_SCHEDTIME
{
    public byte byStartHour;
    public byte byStartMin;
    public byte byStopHour;
    public byte byStopMin;
}

Function Description

Planned time structure.

Member Description

Member Type Remark
byStartHour unsigned char The hour of the start time.
byStartMin unsigned char The minute of the start time.
byStopHour unsigned char The hour of the end time.
byStopMin unsigned char End time in minutes.
Error Code