Skip to content

NET_SDK_RECORD_DEVICE,LPNET_SDK_RECORD_DEVICE

Structure Definition

1
2
3
4
typedef struct {
    GUID            nodeChlID;      
    char            deviceName[36]; 
}NET_SDK_RECORD_DEVICE, * LPNET_SDK_RECORD_DEVICE;
1
2
3
4
5
6
7
[StructLayout(LayoutKind.Sequential, Pack = 4)]
public struct NET_SDK_RECORD_DEVICE
{
    public GUID nodeChlID;
    [MarshalAs(UnmanagedType.ByValArray, ArraySubType = UnmanagedType.U1, SizeConst = 36)]
    public byte[] deviceName;
}

Function Description

Recording device information.

Member Description

Member Type Remark
nodeChlID GUID Refers to the ID of the channel node.
deviceName char[36] The name of the device.
Error Code