Skip to content

NET_DVR_SUBSCRIBE_REPLY

Structure Definition

1
2
3
4
5
6
7
typedef struct
{
    char serverAddress[256];   
    long long currentTime;     
    long long terminationTime; 
    char resv[64];             
} NET_DVR_SUBSCRIBE_REPLY;
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
[StructLayout(LayoutKind.Sequential, Pack = 4)]
public struct NET_DVR_SUBSCRIBE_REPLY
{
    [MarshalAs(UnmanagedType.ByValArray, ArraySubType = UnmanagedType.U1, SizeConst = 256)]
    public byte[] serverAddress;
    public Int64 currentTime;
    public Int64 terminationTime;
    [MarshalAs(UnmanagedType.ByValArray, ArraySubType = UnmanagedType.U1, SizeConst = 64)]
    public byte[] resv;
}

Function Description

Subscribe to the response information.

Member Description

Member Type Remark
serverAddress char[256] Subscription ID is used for subsequent renewal and cancellation.
currentTime long long The current time.
terminationTime long long End time.
resv char[64] For later expansion.
Error Code