Skip to content

NET_SDK_SetSDKMessageCallBack

Interface Definition

1
2
3
4
5
BOOL NET_SDK_SetSDKMessageCallBack(
    UINT nMessage,
    HWND hWnd,
    EXCEPTION_CALLBACK fExceptionCallBack,
    void* pUser);
1
2
3
4
5
public static extern bool NET_SDK_SetSDKMessageCallBack(
    UInt32 nMessage,
    IntPtr hWnd,
    EXCEPTION_CALLBACK fExceptionCallBack,
    IntPtr[] pUser);

Function Description

SDK operation exception callback function.

Parameter Description

Parameters Type Remark
nMessagein UINT Information.
hWndin HWND The window handle that receives the exception information message.
fExceptionCallBackin EXCEPTION_CALLBACK The callback function that receives the exception message and calls back the relevant information of the current exception. For details, refer to EXCEPTION_CALLBACK.
pUserin void* User-defined parameters.

Return Value

  • type:BOOL

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

Remarks

None

Error Code