Skip to content

NET_SDK_RECORD_STATUS

Structure Definition

1
2
3
4
5
typedef struct _net_sdk_record_status
{
    DWORD dwRecordType; 
    DWORD dwChannel;    
} NET_SDK_RECORD_STATUS;
1
2
3
4
5
6
[StructLayout(LayoutKind.Sequential, Pack = 4)]
public struct NET_SDK_RECORD_STATUS
{
    public UInt32 dwRecordType;
    public UInt32 dwChannel;
}

Function Description

Recording status structure.

Member Description

Member Type Remark
dwRecordType DWORD Recording event type, refer to DD_RECORD_TYPE.
dwChannel DWORD Video channel number, starting from 0.
Error Code