Skip to content

NET_SDK_EVENT,LPNET_SDK_EVENT

Structure Definition

1
2
3
4
5
6
7
typedef struct _net_sdk_event
{
    unsigned short chnn; 
    unsigned short type; 
    DD_TIME startTime;   
    DD_TIME endTime;     
} NET_SDK_EVENT, * LPNET_SDK_EVENT;
1
2
3
4
5
6
7
8
[StructLayout(LayoutKind.Sequential, Pack = 4)]
public struct NET_SDK_EVENT
{
    public UInt16 chnn;
    public UInt16 type;
    public DD_TIME startTime;
    public DD_TIME endTime;
}

Function Description

Event information structure.

Member Description

Member Type Remark
chnn unsigned short The channel to which the event corresponds.
type unsigned short Event type.
startTime DD_TIME The start time of the event generation.
endTime DD_TIME The end time of the event.
Error Code