Skip to content

NET_SDK_FindNextLog

Interface Definition

1
2
3
LONG NET_SDK_FindNextLog(
    POINTERHANDLE lLogHandle,
    LPNET_SDK_LOG lpLogData);
1
2
3
public static extern int NET_SDK_FindNextLog(
    POINTERHANDLE lLogHandle,
    IntPtr lpLogData);

Function Description

Get the found log information one by one (IPC is not supported).

Parameter Description

Parameters Type Remark
lLogHandlein POINTERHANDLE Log search handle, the return value of NET_SDK_FindDVRLog.
lpLogDataout LPNET_SDK_LOG Pointer to save log information.

Return Value

  • type:LONG

  • remark:-1 indicates failure, and other values ​​indicate the current acquisition status and other information. For details, refer to NET_SDK_ERROR.

Remarks

Before calling this interface to obtain the search log, you must first call NET_SDK_FindDVRLog to obtain the current search handle.

Error Code