Skip to content

DD_CONFIG_BLOCK_HEAD

Structure Definition

1
2
3
4
5
6
typedef struct _dd_config_block_head_
{
    unsigned int biSize;    
    unsigned int ItemNum;   
    unsigned int netcfgver; 
} DD_CONFIG_BLOCK_HEAD;
1
2
3
4
5
6
7
[StructLayout(LayoutKind.Sequential, Pack = 4)]
public struct DD_CONFIG_BLOCK_HEAD
{
    public UInt32 biSize;
    public UInt32 ItemNum;
    public UInt32 netcfgver;
}

Function Description

Configure block header information.

Member Description

Member Type Remark
biSize unsigned int The length of this structure.
ItemNum unsigned int Number of elements.
netcfgver unsigned int The currently defined version number is fixedly transmitted by the device side as DD_CONFIG_VERSION, and the client side determines it dynamically as needed.
Error Code