跳转至

NET_SDK_CH_DEVICE_SUPPORT

结构体定义

1
2
3
4
5
6
typedef struct _net_sdk_ch_device_support_
{
    unsigned short channel;       
    unsigned char supportFisheye; 
    unsigned char resv[33];       
} NET_SDK_CH_DEVICE_SUPPORT;
1
2
3
4
5
6
7
8
[StructLayout(LayoutKind.Sequential, Pack = 4)]
public struct NET_SDK_CH_DEVICE_SUPPORT
{
    public UInt16 channel;
    public byte supportFisheye;
    [MarshalAs(UnmanagedType.ByValArray, ArraySubType = UnmanagedType.U1, SizeConst = 33)]
    public byte[] resv;
}

功能描述

通道设备支持鱼眼信息。

成员说明

成员 类型 备注
channel unsigned short 通道,从0开始。
supportFisheye unsigned char 是否支持鱼眼。
resv unsigned char[33] 预留字段。
错误码