Skip to content

DD_ALARM_STATUS_INFO

Structure Definition

1
2
3
4
5
6
typedef struct _alarm_status
{
    unsigned int iSize;     
    int chanl;              
    unsigned int alarmType; 
} DD_ALARM_STATUS_INFO;
1
2
3
4
5
6
7
[StructLayout(LayoutKind.Sequential, Pack = 4)]
public struct DD_ALARM_STATUS_INFO
{
    public UInt32 iSize;
    public Int32 chanl;
    public UInt32 alarmType;
}

Function Description

Alarm status information.

Member Description

Member Type Remark
iSize unsigned int The length of this structure.
chanl int Alarm channel, alarms not related to the channel are -1, alarms related to the channel are channels, and alarms such as io are numbers.
alarmType unsigned int Alarm event NET_SDK_N9000_ALARM_TYPE.
Error Code