跳转至

DD_PTZ_PRESET_CONFIG_Ex

结构体定义

1
2
3
4
5
6
typedef struct _dd_ptz_preset_config_ex_
{
    unsigned int channel;         
    unsigned int presetIndex;     
    unsigned char presetName[64]; 
} DD_PTZ_PRESET_CONFIG_Ex;
1
2
3
4
5
6
7
8
[StructLayout(LayoutKind.Sequential, Pack = 4)]
public struct DD_PTZ_PRESET_CONFIG_Ex
{
    public UInt32 channel;
    public UInt32 presetIndex;
    [MarshalAs(UnmanagedType.ByValArray, ArraySubType = UnmanagedType.U1, SizeConst = 64)]
    public byte[] presetName;
}

功能描述

预置点配置。

成员说明

成员 类型 备注
channel unsigned int 通道,从0开始。
presetIndex unsigned int 预置点下标。
presetName unsigned char[64] 预置点名称。
错误码