Skip to content

NET_SDK_GetAlarmOutStatus

Interface Definition

1
2
3
4
5
BOOL NET_SDK_GetAlarmOutStatus(
    LONG lUserID,
    NET_SDK_ALRAM_OUT_STATUS* pAlarmOutInfo,
    LONG lBuffSize,
    LONG* pAlarmOutCount);
1
2
3
4
5
public static extern bool NET_SDK_GetAlarmOutStatus(
    int lUserID,
    IntPtr PALarmOutStatus,
    int lBuffSize,
    ref int pAlarmOutCount);

Function Description

Get alarm output status information.

Parameter Description

Parameters Type Remark
lUserIDin LONG User ID, the return value of NET_SDK_Login or NET_SDK_LoginEx.
pAlarmOutInfoout NET_SDK_ALRAM_OUT_STATUS* Alarm output information array, refer to NET_SDK_ALRAM_OUT_STATUS.
lBuffSizein LONG The length of the pAlarmOutInfo array.
pAlarmOutCountout LONG* The actual number of alarm outputs returned is less than or equal to lBuffSize.

Return Value

  • type:BOOL

  • remark:Returns TRUE if successful, FALSE if failed.

Remarks

None

Error Code