Remote contol

How to use SDK to enable remote control?

you can go to https://zoom.us/profile/setting and disable this feature. windows sdk don’t support enable/disable this. thanks.

I mean to let me give remote control to the other participant using SDK

hi, you can find the remote control api in meeting_remote_ctrl_interface.h 

1.call back event

ZOOM_SDK_NAMESPACE.IMeetingRemoteCtrlEvent 

2.API

ZOOM_SDK_NAMESPACE.IMeetingRemoteController 

use case:

user A: ZOOM_SDK_NAMESPACE.IMeetingRemoteController.RequestRemoteControl  user B

user B will got ZOOM_SDK_NAMESPACE.IMeetingRemoteCtrlEvent.onRemoteControlStatus Remote_Control_I_Recv_Request_Msg

user B ZOOM_SDK_NAMESPACE.IMeetingRemoteController.GiveRemoteControlTo  user A

after that User A can control User B.

thanks

Dats