Skip to content

NET_SDK_SetIVMRuleConfig

Interface Definition

1
2
3
4
5
6
BOOL NET_SDK_SetIVMRuleConfig(
    LONG lUserID,
    DWORD dwCommand,
    LONG lChannel,
    LPVOID lpInBuffer,
    DWORD dwInBufferSize);
1
2
3
4
5
6
public static extern Boolean NET_SDK_SetIVMRuleConfig(
    Int32 lUserID,
    UInt32 dwCommand,
    Int32 lChannel,
    IntPtr lpInBuffer,
    UInt32 dwInBufferSize);

Function Description

Set the intelligent configuration information of the device (supports IPC only).

Parameter Description

Parameters Type Remark
lUserIDin LONG User ID, the return value of NET_SDK_Login or NET_SDK_LoginEx.
dwCommandin DWORD Device configuration commands, see IVM_RULE_CONFIG_TYPE.
lChannelin LONG Channel number, starting from 0. This parameter is invalid for IPC devices.
lpInBufferin LPVOID Pointer to the buffer for input data.
dwInBufferSizein DWORD The length of the buffer pointer lpInBuffer for receiving data (in bytes) cannot be 0.

Return Value

  • type:BOOL

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

Remarks

None

Error Code