6 #ifndef _ZOOM_CUSTOMIZED_SHARE_RENDER_H_ 7 #define _ZOOM_CUSTOMIZED_SHARE_RENDER_H_ 8 #include "..\zoom_sdk_def.h" 10 BEGIN_ZOOM_SDK_NAMESPACE
104 END_ZOOM_SDK_NAMESPACE
CustomizedViewShareMode
View mode of shared render. Here are more detailed structural descriptions.
Definition: customized_share_render.h:15
virtual void onWindowMsgNotification(UINT uMsg, WPARAM wParam, LPARAM lParam)=0
Callback event when the App receives the window messages from the sharer. Here are the list of the wi...
Share render callback event.
Definition: customized_share_render.h:23
virtual SDKError SetEvent(ICustomizedShareRenderEvent *pEvent)=0
Set the share render callback event handler.
SDKError
SDK error types. Here are more detailed structural descriptions.
Definition: zoom_sdk_def.h:29
virtual unsigned int GetUserID()=0
Get the ID of the user who's sending the sharing.
virtual void onSharingContentStartRecving()=0
Callback event the moment received the shared content.
View the shared content in full screen mode.
Definition: customized_share_render.h:18
virtual HWND GetOwnerWnd()=0
Get the window handle of showing sharing content.
virtual void onSharingSourceUserIDNotification(unsigned int userid)=0
Callback event of changed sender or the sharing closes when receiving the shared content.
virtual SDKError Hide()=0
Hide the shared content received.
virtual SDKError HandleWindowsMoveMsg()=0
Redraw the window of showing the sharing.
virtual SDKError Resize(RECT rc)=0
Reset the dialog size to view the sharing content.
virtual SDKError Show()=0
Show the shared content received.
virtual SDKError SetViewMode(CustomizedViewShareMode mode)=0
Set the view mode of watching the sharing.
virtual SDKError SetUserID(unsigned int userid)=0
View the sharing content from the specified user ID.
Share render interface.
Definition: customized_share_render.h:47