Skip to content

Commit

Permalink
v4.4.57220.1211
Browse files Browse the repository at this point in the history
  • Loading branch information
carsonzoom committed Jan 7, 2020
1 parent d9d19ba commit 932ffeb
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 0 deletions.
Binary file modified bin/zoom_sdk_dotnet_wrap.dll
100755 → 100644
Binary file not shown.
1 change: 1 addition & 0 deletions bin/zoom_sdk_dotnet_wrap.dll.metagen
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -723,6 +723,7 @@ Interface ZOOM_SDK_DOTNET_WRAP.IMeetingConfigurationDotNetWrap: AutoLayout, Ansi
EnableLengthLimitationOfMeetingNumber(Boolean(HasFieldMarshal)): PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask, Abstract
EnableShareIOSDevice(Boolean(HasFieldMarshal)): PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask, Abstract
RedirectClickCustomLiveStreamMenuEvent(Boolean(HasFieldMarshal)): PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask, Abstract
EnableInputMeetingScreenNameDlg(Boolean(HasFieldMarshal)): PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask, Abstract
Add_CB_onInputMeetingPasswordAndScreenNameNotification(onInputMeetingPasswordAndScreenNameNotification): PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask, Abstract
Add_CB_onAirPlayInstructionWndNotification(onAirPlayInstructionWndNotification): PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask, Abstract
Remove_CB_onInputMeetingPasswordAndScreenNameNotification(onInputMeetingPasswordAndScreenNameNotification): PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask, Abstract
Expand Down
4 changes: 4 additions & 0 deletions zoom_sdk_c_sharp_wrap/customized_share_render_dotnet_wrap.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ namespace ZOOM_SDK_DOTNET_WRAP {
{
m_dotNetWrapImpl = gcnew ICustomizedShareRenderDotNetImpl(pWrap);
m_pEvents = new CustomizedShareRenderEventHandler(this);
if (m_dotNetWrapImpl)
{
BindEvent();
}
}

CCustomizedShareRenderDotNetWrap::~CCustomizedShareRenderDotNetWrap()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ namespace ZOOM_SDK_DOTNET_WRAP {
{
m_dotNetWrapImpl = gcnew ICustomizedVideoContainerDotNetImpl(pWrap);
m_pEvents = new CustomizedVideoContainerEventHandler(this);
if (m_dotNetWrapImpl)
{
BindEvent();
}
}

CCustomizedVideoContainerDotNetWrap::~CCustomizedVideoContainerDotNetWrap()
Expand Down
5 changes: 5 additions & 0 deletions zoom_sdk_c_sharp_wrap/meeting_configuration_dotnet_wrap.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -281,6 +281,11 @@ namespace ZOOM_SDK_DOTNET_WRAP {
GetMeetingConfiguration().RedirectClickCustomLiveStreamMenuEvent(bRedirect);
}

void CMeetingConfigurationDotNetWrap::EnableInputMeetingScreenNameDlg(bool bEnable)
{
ZOOM_SDK_NAMESPACE::CSDKWrap::GetInst().GetMeetingServiceWrap().
GetMeetingConfiguration().EnableInputMeetingPasswordDlg(bEnable);
}
void CMeetingConfigurationDotNetWrap::BindEvent()
{
ZOOM_SDK_NAMESPACE::CSDKWrap::GetInst().GetMeetingServiceWrap().GetMeetingConfiguration().m_cbonInputMeetingPasswordAndScreenNameNotification =
Expand Down
2 changes: 2 additions & 0 deletions zoom_sdk_c_sharp_wrap/meeting_configuration_dotnet_wrap.h
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ namespace ZOOM_SDK_DOTNET_WRAP {
void EnableLengthLimitationOfMeetingNumber(bool bEnable);
void EnableShareIOSDevice(bool bEnable);
void RedirectClickCustomLiveStreamMenuEvent(bool bRedirect);
void EnableInputMeetingScreenNameDlg(bool bEnable);

void Add_CB_onInputMeetingPasswordAndScreenNameNotification(onInputMeetingPasswordAndScreenNameNotification^ cb);
void Add_CB_onAirPlayInstructionWndNotification(onAirPlayInstructionWndNotification^ cb);
Expand Down Expand Up @@ -125,6 +126,7 @@ namespace ZOOM_SDK_DOTNET_WRAP {
virtual void EnableLengthLimitationOfMeetingNumber(bool bEnable);
virtual void EnableShareIOSDevice(bool bEnable);
virtual void RedirectClickCustomLiveStreamMenuEvent(bool bRedirect);
virtual void EnableInputMeetingScreenNameDlg(bool bEnable);

virtual void Add_CB_onInputMeetingPasswordAndScreenNameNotification(onInputMeetingPasswordAndScreenNameNotification^ cb)
{
Expand Down

0 comments on commit 932ffeb

Please sign in to comment.