Skip to content

NET_SDK_SetUnRegisterCallback

Interface Definition

1
2
3
BOOL NET_SDK_SetUnRegisterCallback(
    ACCEPT_UNREGISTER_CALLBACK fUnRegisterCBFun,
    void* pUser);
1
2
3
public static extern Boolean NET_SDK_SetUnRegisterCallback(
    ACCEPT_UNREGISTER_CALLBACK fUnRegisterCBFun,
    IntPtr pUser);

Function Description

This function is the callback of unregistered devices. After receiving the callback, NET_SDK_AddRegisterDeviceInfo is called to notify the SDK.

Parameter Description

Parameters Type Remark
fUnRegisterCBFunin ACCEPT_UNREGISTER_CALLBACK Callback function, see ACCEPT_UNREGISTER_CALLBACK.
pUserin void* User-defined parameters.

Return Value

  • type:BOOL

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

Remarks

None

Error Code