Updated on 2023-03-23 GMT+08:00

Click Injection Notification

Notification Description

A notification is sent when a user clicks a button configured with click injection.

Method Definition

1
virtual void OnClickInjectBtn(HwmClickInjectBtn injectBtn, void* data, const char* id) {};

Precautions

None

Parameter Description

Table 1 Parameter description

Parameter

Type

Description

injectBtn

HwmClickInjectBtn

Button type.

data

void*

Button parameter, which may be empty.

  • If the button type is HWM_CLICK_INJECT_BTN_CALL_OTHER_NUM, the value of this parameter is the information about the participant to be called.
  • If the button type is HWM_CLICK_INJECT_BTN_INVITE, this parameter is left blank.

id

const char*

ID of a customized button.

  • When the button type is HWM_TOOLS_INJECT_BTN_CUSTOM, the value of this parameter is the ID of the customized button.
  • When the button type is HWM_CLICK_INJECT_BTN_PARTICIPANT_DETAIL, the value of this parameter is that of HwmConfAttendee.
  • When the button type is set to other values, this parameter is left blank.
Table 2 Enumerated values of HwmClickInjectBtn

Enumerated Value

Description

HWM_CLICK_INJECT_BTN_INVITE

Invite button.

HWM_CLICK_INJECT_BTN_CALL_OTHER_NUM

Call other number button.

HWM_CLICK_INJECT_BTN_ATTENDEE

Participants button.

HWM_CLICK_INJECT_BTN_SHARE

Share button.

HWM_CLICK_INJECT_BTN_LEAVE

Leave button.

HWM_TOOLS_INJECT_BTN_CUSTOM

User-defined button.

HWM_CLICK_INJECT_BTN_COPY_CONF_INFO

Button for copying meeting information.

HWM_CLICK_INJECT_BTN_PARTICIPANT_DETAIL

Participant details button.