Skip to content

NET_SDK_CHANNEL_PTZ

Structure Definition

1
2
3
4
5
6
typedef struct _net_sdk_channel_ptz
{
    unsigned int dwChannel;    
    unsigned int eChanneltype; 
    unsigned char resv[8];     
} NET_SDK_CHANNEL_PTZ;
1
2
3
4
5
6
7
8
[StructLayout(LayoutKind.Sequential, Pack = 4)]
public struct NET_SDK_CHANNEL_PTZ
{
    public UInt32 dwChannel;
    public UInt32 eChanneltype;
    [MarshalAs(UnmanagedType.ByValArray, ArraySubType = UnmanagedType.U1, SizeConst = 8)]
    public byte[] resv;
}

Function Description

PTZ channel information.

Member Description

Member Type Remark
dwChannel unsigned int Channel number, starting from 0.
eChanneltype unsigned int Channel type, see CHANNEL_TYPE.
resv unsigned char[8] Reserved field.
Error Code