跳转至

DD_CONFIG_BLOCK_HEAD

结构体定义

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

功能描述

配置块头信息。

成员说明

成员 类型 备注
biSize unsigned int 本结构体长度。
ItemNum unsigned int 元素数目。
netcfgver unsigned int 当前定义的版本号,设备端固定传输DD_CONFIG_VERSION,客户端根据需要动态判断。
错误码