Skip to content

DD_PTZ_PRESET_CONFIG_Ex

Structure Definition

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

Function Description

Preset point configuration.

Member Description

Member Type Remark
channel unsigned int Channel, starting from 0.
presetIndex unsigned int Preset point subscript.
presetName unsigned char[64] Preset point name.
Error Code