Skip to content

DD_CHANNEL_CONFIG

Structure Definition

1
2
3
4
5
6
typedef struct _dd_channel_config_
{
    unsigned int iSize;                    
    unsigned int hide;                     
    char name[DD_MAX_CAMERA_NAME_BUF_LEN]; 
} DD_CHANNEL_CONFIG;
1
2
3
4
5
6
7
8
[StructLayout(LayoutKind.Sequential, Pack = 4)]
public struct DD_CHANNEL_CONFIG
{
    public UInt32 iSize;
    public UInt32 hide;
    [MarshalAs(UnmanagedType.ByValArray, ArraySubType = UnmanagedType.U1, SizeConst = 132)]
    public byte[] name;
}

Function Description

Channel configuration structure.

Member Description

Member Type Remark
iSize unsigned int The length of this structure.
hide unsigned int Whether to hide the channel.
name char[DD_MAX_CAMERA_NAME_BUF_LEN] Channel name.
Error Code