Skip to content

NET_SDK_CH_DEVICE_SUPPORT

Structure Definition

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

Function Description

Channel devices support fisheye information.

Member Description

Member Type Remark
channel unsigned short Channel, starting from 0.
supportFisheye unsigned char Whether to support fisheye.
resv unsigned char[33] Reserved field.
Error Code