ZOOM Windows SDK  5.2.42037.1112
outlook_plugin_integration_helper_interface.h
Go to the documentation of this file.
1 
6 #ifndef _OUTLOOK_PLUGIN_INTEGRATION_HELPER_INTERFACE_H_
7 #define _OUTLOOK_PLUGIN_INTEGRATION_HELPER_INTERFACE_H_
8 #include "zoom_sdk_def.h"
9 
10 BEGIN_ZOOM_SDK_NAMESPACE
14 {
15 public:
18 
21 
25  virtual void onOutlookPluginDefaultMeetingTopicRequestNotification(const wchar_t* pScheduleForEmail, wchar_t** ppDefaultMeetingTopic) = 0;
26 };
27 
31 {
32 public:
38 
43  virtual SDKError Start(const wchar_t* ipc_channel_name = NULL) = 0;
44 
48  virtual SDKError Stop() = 0;
49 };
50 
51 END_ZOOM_SDK_NAMESPACE
52 #endif
ZOOM windows SDK Common Definition File.
Outlook plugin integration helper interface.
Definition: outlook_plugin_integration_helper_interface.h:30
virtual SDKError Stop()=0
Stop Outlook plugin integration.
virtual void onOutlookPluginDefaultMeetingTopicRequestNotification(const wchar_t *pScheduleForEmail, wchar_t **ppDefaultMeetingTopic)=0
The callback event will be triggered when the outlook plugin requests to assign a meeting topic...
virtual SDKError SetEvent(IOutlookPluginIntegrationHelperEvent *pEvent)=0
Outlook plugin integration helper callback handler.
SDKError
SDK error types. Here are more detailed structural descriptions.
Definition: zoom_sdk_def.h:29
virtual void onOutlookPluginNeedLoginRequestNotification()=0
The callback event will be triggered when the outlook plugin requests a login.
virtual SDKError Start(const wchar_t *ipc_channel_name=NULL)=0
Start outlook plugin integration.
virtual void onOutlookPluginScheduleMeetingRequestNotification()=0
The callback event will be triggered when the outlook plugin requests to schedule a meeting...
Outlook plugin integration helper Callback event.
Definition: outlook_plugin_integration_helper_interface.h:13