跳转至

DD_ALARM_STATUS_INFO

结构体定义

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;
}

功能描述

报警状态信息。

成员说明

成员 类型 备注
iSize unsigned int 本结构体长度。
chanl int 报警通道,跟通道无关的报警是-1, 跟通道相关的是通道,io之类的报警是个数。
alarmType unsigned int 报警事件 NET_SDK_N9000_ALARM_TYPE
错误码