6#ifndef _ZOOM_SDK_DEF_H_
7#define _ZOOM_SDK_DEF_H_
11#define TLS_KEY_DEF uint32_t
22#define TLS_KEY_DEF pthread_key_t
24#define PLATFORM_IMPORT __declspec(dllimport)
25#define PLATFORM_EXPORT __declspec(dllexport)
26#ifdef ZOOM_SDK_DLL_EXPORT
27#define SDK_API PLATFORM_EXPORT
28#elif defined ZOOM_SDK_DLL_IMPORT
29#define SDK_API PLATFORM_IMPORT
34#define ZOOM_SDK_NAMESPACE ZOOMSDK
35#define BEGIN_ZOOM_SDK_NAMESPACE namespace ZOOM_SDK_NAMESPACE {
36#define END_ZOOM_SDK_NAMESPACE };
37#define USING_ZOOM_SDK_NAMESPACE using namespace ZOOM_SDK_NAMESPACE;
123typedef struct tagWndPosition
142enum CustomizedLanguageType
144 CustomizedLanguage_None,
145 CustomizedLanguage_FilePath,
146 CustomizedLanguage_Content,
153typedef struct tagCustomizedLanguageInfo
155 const char* langName;
156 const char* langInfo;
157 CustomizedLanguageType langType;
158 tagCustomizedLanguageInfo()
162 langType = CustomizedLanguage_None;
165}CustomizedLanguageInfo;
172#define ENABLE_CUSTOMIZED_UI_FLAG (1 << 5)
173typedef struct tagConfigurableOptions
175 CustomizedLanguageInfo customizedLang;
176 int optionalFeatures;
178 tagConfigurableOptions()
180 optionalFeatures = 0;
181 sdkPathPostfix =
nullptr;
192 SDK_APP_Locale_Default,
196enum ZoomSDKVideoRenderMode
198 ZoomSDKVideoRenderMode_None = 0,
199 ZoomSDKVideoRenderMode_Auto,
200 ZoomSDKVideoRenderMode_D3D11EnableFLIP,
201 ZoomSDKVideoRenderMode_D3D11,
202 ZoomSDKVideoRenderMode_D3D9,
203 ZoomSDKVideoRenderMode_GDI,
206enum ZoomSDKRenderPostProcessing
208 ZoomSDKRenderPostProcessing_None = 0,
209 ZoomSDKRenderPostProcessing_Auto,
210 ZoomSDKRenderPostProcessing_Enable,
211 ZoomSDKRenderPostProcessing_Disable,
214enum ZoomSDKVideoCaptureMethod
216 ZoomSDKVideoCaptureMethod_None = 0,
217 ZoomSDKVideoCaptureMethod_Auto,
218 ZoomSDKVideoCaptureMethod_DirectSHow,
219 ZoomSDKVideoCaptureMethod_MediaFoundation,
222typedef struct tagZoomSDKRenderOptions
224 ZoomSDKVideoRenderMode videoRenderMode;
225 ZoomSDKRenderPostProcessing renderPostProcessing;
226 ZoomSDKVideoCaptureMethod videoCaptureMethod;
227 tagZoomSDKRenderOptions()
229 videoRenderMode = ZoomSDKVideoRenderMode_None;
230 renderPostProcessing = ZoomSDKRenderPostProcessing_Auto;
231 videoCaptureMethod = ZoomSDKVideoCaptureMethod_Auto;
233}ZoomSDKRenderOptions;
266 unsigned int uiWindowIconSmallID;
267 unsigned int uiWindowIconBigID;
268 ConfigurableOptions obConfigOpts;
269 SDK_APP_Locale locale;
270 ZoomSDKRenderOptions renderOpts;
271 bool permonitor_awareness_mode;
285 hResInstance = (
void*)-1;
286 uiWindowIconSmallID = 0;
287 uiWindowIconBigID = 0;
288 locale = SDK_APP_Locale_Default;
289 permonitor_awareness_mode =
true;
352#define SDK_NULL_AUDIO_FILE_HANDLE (0xffffffff)
353const RECT _SDK_TEST_VIDEO_INIT_RECT = {0,0,0,0};
virtual T GetItem(int index)=0
Error mechanism interface provided by the SDK This feature is gradually improved, so some errors may ...
virtual LastErrorType GetErrorType() const =0
Get the last error type.
virtual ~IZoomLastError()
virtual const zchar_t * GetErrorDescription() const =0
Get the description for the last error.
virtual UINT64 GetErrorCode() const =0
Get the last error code.
Zoom SDK color. The standard RGB color model has a value range of 0-255.
unsigned int blue
Font color B value.
unsigned int green
Font color G value.
unsigned int red
Font color R value.
Initialize the SDK Parameter. Here are more detailed structural descriptions.
const zchar_t * strWebDomain
Web domain.
RawDataOptions rawdataOpts
SDK_LANGUAGE_ID emLanguageID
The ID of the SDK language.
const zchar_t * strBrandingName
Branding name.
bool enableGenerateDump
Enable generate dump file if the app crashed.
bool enableLogByDefault
Enable log feature.
unsigned int uiLogFileSize
Size of a log file in M(megabyte). The default size is 5M. There are 5 log files in total and the fil...
const zchar_t * strSupportUrl
Support URL.
ZoomSDKRawDataMemoryMode videoRawdataMemoryMode
ZoomSDKRawDataMemoryMode shareRawdataMemoryMode
ZoomSDKRawDataMemoryMode audioRawdataMemoryMode
bool enableRawdataIntermediateMode
false – YUV420data, true – intermediate data
struct tagRawDataOptions RawDataOptions
@ FrameDataFormat_I420_FULL
@ FrameDataFormat_I420_LIMITED
struct tagInitParam InitParam
LastErrorType
The last error types of the SDK. Here are more detailed structural descriptions.
@ LastErrorType_Auth
Error during verification.
@ LastErrorType_Login
Error during login.
@ LastErrorType_System
The associated error with the SDK bottom layer.
@ LastErrorType_Meeting
The associated error with the meeting.
@ LastErrorType_None
No error.
@ CannotShareReasonType_Other_WB_Sharing
Another is sharing their whiteboard.
@ CannotShareReasonType_Other_Screen_Sharing
Another is sharing their screen.
@ CannotShareReasonType_Need_Grap_WB_Sharing
Other or myself is sharing whiteboard, and can Grab. To grab, call EnableGrabShareWithoutReminder(tru...
@ CannotShareReasonType_Locked
Only the host can share.
@ CannotShareReasonType_UnKnown
@ CannotShareReasonType_Need_Grab_Other_Screen_Sharing
Another is sharing their screen, and can grab. To grab, call EnableGrabShareWithoutReminder(true) bef...
@ CannotShareReasonType_Need_Grab_Audio_Sharing
Another is sharing pure computer audio, and can grab. To grab, call EnableGrabShareWithoutReminder(tr...
@ CannotShareReasonType_Need_Grab_Myself_Screen_Sharing
The user is sharing their screen, and can grab. To grab, call EnableGrabShareWithoutReminder(true) be...
@ CannotShareReasonType_None
@ CannotShareReasonType_Reach_Maximum
The meeting has reached the maximum allowed screen share sessions.
@ CannotShareReasonType_Disabled
Sharing is disabled.
@ CannotShareReasonType_Have_Share_From_Mainsession
Other share screen in main session.
#define END_ZOOM_SDK_NAMESPACE
@ ZoomSDKAudioChannel_Stereo
@ ZoomSDKAudioChannel_Mono
SDK_LANGUAGE_ID
The text resource type used by the SDK. Here are more detailed structural descriptions.
@ LANGUAGE_Russian
In Russian.
@ LANGUAGE_French
In French.
@ LANGUAGE_Chinese_Traditional
In traditional Chinese.
@ LANGUAGE_Spanish
In Spanish.
@ LANGUAGE_Unknown
For initialization.
@ LANGUAGE_Japanese
In Japanese.
@ LANGUAGE_Vietnamese
In Vietnamese.
@ LANGUAGE_Polish
In Polish.
@ LANGUAGE_English
In English.
@ LANGUAGE_Italian
In Italian.
@ LANGUAGE_Swedish
In Swedish.
@ LANGUAGE_German
In German.
@ LANGUAGE_Portuguese
In Portuguese.
@ LANGUAGE_Chinese_Simplified
In simplified Chinese.
@ LANGUAGE_Korean
In Korean.
@ LANGUAGE_Turkish
In Turkish.
#define BEGIN_ZOOM_SDK_NAMESPACE
@ SHARE_TYPE_AIRHOST
Type of sharing data from the device connected WIFI.
@ SHARE_TYPE_DATA
Type of sharing the data.
@ SHARE_TYPE_FRAME
Type of sharing the frame.
@ SHARE_TYPE_COMPUTER_AUDIO
Type of sharing the computer audio.
@ SHARE_TYPE_DS
Type of sharing the desktop.
@ SHARE_TYPE_DOCUMENT
Type of sharing the document.
@ SHARE_TYPE_AS
Type of sharing the application.
@ SHARE_TYPE_UNKNOWN
Type unknown.
@ SHARE_TYPE_VIDEO_FILE
Type of sharing the video file.
@ SHARE_TYPE_CAMERA
Type of sharing the camera.
@ SHARE_TYPE_WB
Type of sharing the white-board.
@ ZoomSDKRawDataMemoryModeStack
@ ZoomSDKRawDataMemoryModeHeap
SDKError
SDK error types. Here are more detailed structural descriptions.
@ SDKERR_UNINITIALIZE
Not initialized before the usage.
@ SDKERR_NO_AUDIODEVICE_ISFOUND
No audio device found.
@ SDKERR_INTERNAL_ERROR
SDK internal error.
@ SDKERR_FILETRANSFER_ERROR
@ SDKERR_VIDEO_NOTREADY
The video service is not ready.
@ SDKERR_SETTING_OS_DONT_SUPPORT
Current OS doesn't support the setting.
@ SDKERR_HARDWARE_NOT_MEET_FOR_VB
Computer doesn't meet the minimum requirements to use virtual background feature.
@ SDKERR_NO_PERMISSION
No permission.
@ SDKERR_TRANSCODER_NOFOUND
Transcoder module is not found.
@ SDKERR_UNKNOWN
Unknown error.
@ SDKERR_MEMORY_FAILED
No memory is allocated.
@ SDKERR_SHARE_CANNOT_SUBSCRIBE_MYSELF
@ SDKERR_NO_VIDEODEVICE_ISFOUND
No video device found.
@ SDKERR_EMAIL_LOGIN_IS_DISABLED
Email login is disable.
@ SDKERR_DOMAIN_DONT_SUPPORT
@ SDKERR_NO_SHARE_DATA
There is no raw data of sharing.
@ SDKERR_TOO_FREQUENT_CALL
API calls too frequently.
@ SDKERR_NEED_USER_CONFIRM_RECORD_DISCLAIMER
Need process disclaimer.
@ SDKERR_INVALID_PARAMETER
Wrong parameter.
@ SDKERR_NO_IMPL
This feature is currently invalid.
@ SDKERR_NORECORDINGINPROCESS
No recording in process.
@ SDKERR_UNAUTHENTICATION
Not authorized before the usage.
@ SDKERR_FAIL_ASSIGN_USER_PRIVILEGE
User can't be assigned with new privilege.
@ SDKERR_WRONG_USAGE
Incorrect usage of the feature.
@ SDKERR_MEETING_VIEWTYPE_PARAMETER_IS_WRONG
Incorrect ViewType parameters.
@ SDKERR_MODULE_LOAD_FAILED
Loading module failed.
@ SDKERR_MEETING_REMOTE_CONTROL_IS_OFF
Remote control is disabled.
@ SDKERR_MEETING_NOT_SHARE_SENDER
The current user is not the presenter.
@ SDKERR_OTHER_SDK_INSTANCE_RUNNING
The other instance of the SDK is in process.
@ SDKERR_MEETING_ANNOTATION_IS_OFF
Annotation is disabled.
@ SDKERR_SERVICE_FAILED
Internal service error.
@ SDKERR_HARDWARE_DONT_SUPPORT
The current device doesn't support the feature.
@ SDKERR_MEETING_DONT_SUPPORT_FEATURE
The current meeting doesn't support the feature.
@ SDKERR_MEETING_YOU_HAVE_NO_SHARE
There is no sharing.
SharingStatus
Sharing status. Here are more detailed structural descriptions..
@ Sharing_Other_Share_Pure_Audio_Begin
Others begin to share pure audio.
@ Sharing_Self_Send_Begin
Begin to share by the user himself.
@ Sharing_Self_Send_Pure_Audio_End
Stop sharing pure audio by the user.
@ Sharing_View_Other_Sharing
View the sharing of others.
@ Sharing_Self_Send_Pure_Audio_Begin
Begin to share pure audio by the user himself.
@ Sharing_Other_Share_Pure_Audio_End
Others stop sharing pure audio.
@ Sharing_Pause
Pause sharing.
@ Sharing_Resume
Resume sharing.
@ Sharing_Self_Send_End
Stop sharing by the user.
@ Sharing_Other_Share_Begin
Others begin to share.
@ Sharing_Other_Share_End
Others stop sharing.