Skip to content

NET_SDK_ALRAM_OUT_STATUS

Structure Definition

1
2
3
4
5
6
typedef struct
{
    char szName[64];    
    BOOL bOnlineStatus; 
    BOOL bSwitch;       
} NET_SDK_ALRAM_OUT_STATUS;
1
2
3
4
5
6
7
8
[StructLayout(LayoutKind.Sequential, Pack = 4)]
public struct NET_SDK_ALRAM_OUT_STATUS
{
    [MarshalAs(UnmanagedType.ByValArray, ArraySubType = UnmanagedType.U1, SizeConst = 64)]
    public byte[] szName;
    public Boolean bOnlineStatus;
    public Boolean bSwitch;
}

Function Description

Alarm output status.

Member Description

Member Type Remark
szName char[64] Alarm output name.
bOnlineStatus BOOL Whether the alarm output channel is online.
bSwitch BOOL Alarm status, TRUE: alarm is in progress; FALSE: alarm is not in progress.
Error Code