跳转至

NET_DVR_SCHEDTIME,LPNET_DVR_SCHEDTIME

结构体定义

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;
}

功能描述

计划时间结构体。

成员说明

成员 类型 备注
byStartHour unsigned char 开始时间的小时。
byStartMin unsigned char 开始时间的分。
byStopHour unsigned char 结束时间的小时。
byStopMin unsigned char 结束时间的分。
错误码