[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-anthropic-zoom-meeting-sdk-windows":3,"mdc--ixxxmm-key":37,"related-org-anthropic-zoom-meeting-sdk-windows":7752,"related-repo-anthropic-zoom-meeting-sdk-windows":7941},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":12,"stars":26,"repoUrl":27,"updatedAt":28,"license":29,"forks":30,"topics":31,"repo":32,"sourceUrl":35,"mdContent":36},"zoom-meeting-sdk-windows","build Zoom Meeting SDK apps for Windows","Zoom Meeting SDK for Windows - Native C++ SDK for embedding Zoom meetings into Windows desktop\napplications. Supports custom UI architecture with raw video\u002Faudio data, headless bots, and deep\nintegration with meeting features. Includes SDK architecture patterns and Windows message loop handling.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},"anthropic","Anthropic","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fanthropic.png","anthropics",[13,17,20,23],{"name":14,"slug":15,"type":16},"Windows","windows","tag",{"name":18,"slug":19,"type":16},"C#","c",{"name":21,"slug":22,"type":16},"SDK","sdk",{"name":24,"slug":25,"type":16},"Zoom","zoom",22885,"https:\u002F\u002Fgithub.com\u002Fanthropics\u002Fknowledge-work-plugins","2026-04-10T04:57:36.746281",null,2736,[],{"repoUrl":27,"stars":26,"forks":30,"topics":33,"description":34},[],"Open source repository of plugins primarily intended for knowledge workers to use in Claude Cowork","https:\u002F\u002Fgithub.com\u002Fanthropics\u002Fknowledge-work-plugins\u002Ftree\u002FHEAD\u002Fpartner-built\u002Fzoom-plugin\u002Fskills\u002Fmeeting-sdk\u002Fwindows","---\nname: zoom-meeting-sdk-windows\ndescription: |\n  Zoom Meeting SDK for Windows - Native C++ SDK for embedding Zoom meetings into Windows desktop\n  applications. Supports custom UI architecture with raw video\u002Faudio data, headless bots, and deep\n  integration with meeting features. Includes SDK architecture patterns and Windows message loop handling.\nuser-invocable: false\ntriggers:\n  - \"meeting sdk windows\"\n  - \"windows meeting sdk\"\n  - \"windows meeting bot\"\n  - \"c++ meeting sdk windows\"\n  - \"custom ui meeting windows\"\n---\n\n# Zoom Meeting SDK (Windows)\n\nEmbed Zoom meeting capabilities into Windows desktop applications for native C++ integrations and headless bots.\n\n## New to Zoom SDK? Start Here!\n\n**The fastest way to master the SDK:**\n\n1. **[SDK Architecture Pattern](concepts\u002Fsdk-architecture-pattern.md)** - Learn the universal pattern that works for ALL 35+ features\n2. **[Authentication Pattern](examples\u002Fauthentication-pattern.md)** - Get a working bot joining meetings\n3. **[Windows Message Loop](troubleshooting\u002Fwindows-message-loop.md)** - Fix the #1 reason callbacks don't fire\n\n**Building a Custom UI?**\n- [Custom UI Architecture](concepts\u002Fcustom-ui-architecture.md) - How SDK rendering actually works (child HWNDs, D3D, etc.)\n- [Custom UI Video Rendering Example](examples\u002Fcustom-ui-video-rendering.md) - Complete working code\n- [SDK-Rendered vs Self-Rendered](concepts\u002Fcustom-ui-vs-raw-data.md) - Choose the right approach\n- [Custom UI Interface Methods](references\u002Finterface-methods.md) - All 13 required virtual methods\n\n**Having issues?**\n- Build errors → [Build Errors Guide](troubleshooting\u002Fbuild-errors.md)\n- Callbacks not firing → [Windows Message Loop](troubleshooting\u002Fwindows-message-loop.md)\n- Quick diagnostics → [Common Issues](troubleshooting\u002Fcommon-issues.md)\n- Performance \u002F service quality → [service-quality.md](examples\u002Fservice-quality.md)\n- Deployment notes → [deployment.md](references\u002Fdeployment.md)\n- MSBuild from git bash → [Build Errors Guide](troubleshooting\u002Fbuild-errors.md#msbuild-command-pattern)\n- Complete navigation → [SKILL.md](SKILL.md)\n\n## Prerequisites\n\n- Zoom app with Meeting SDK credentials (Client ID & Secret)\n- Visual Studio 2019\u002F2022 or later\n- Windows 10 or later\n- C++ development environment\n- vcpkg for dependency management\n\n> **Need help with authentication?** See the **[zoom-oauth](..\u002F..\u002Foauth\u002FSKILL.md)** skill for JWT token generation.\n\n## Project Preferences & Learnings\n\n> **IMPORTANT**: These are hard-won preferences from real project experience. Follow these when creating new projects.\n\n### Do NOT use CMake — Use native Visual Studio `.vcxproj`\n\n**Always create a native Visual Studio `.sln` + `.vcxproj` project**, not a CMake project. Reasons:\n- More standard and familiar for Windows C++ developers\n- Developers can double-click the `.sln` to open in Visual Studio immediately\n- Project settings (include dirs, lib dirs, preprocessor defines) are easier to see and edit in the VS Property Pages UI\n- No extra CMake tooling or configuration step required\n- Friendlier and easier for developers to understand and maintain\n\n### `config.json` must be visible in Solution Explorer\n\nThe `config.json` file (containing `sdk_jwt`, `meeting_number`, `passcode`) must be:\n1. **Included in the `.vcxproj`** as a `\u003CNone>` item with `\u003CCopyToOutputDirectory>PreserveNewest\u003C\u002FCopyToOutputDirectory>`\n2. **Placed in a \"Config\" filter** in the `.vcxproj.filters` file so it appears under a \"Config\" folder in Solution Explorer\n3. **Easily editable** by developers directly from Solution Explorer — they should never have to hunt for it in File Explorer\n\nExample `.vcxproj` entry:\n```xml\n\u003CItemGroup>\n  \u003CNone Include=\"config.json\">\n    \u003CCopyToOutputDirectory>PreserveNewest\u003C\u002FCopyToOutputDirectory>\n  \u003C\u002FNone>\n\u003C\u002FItemGroup>\n```\n\nExample `.vcxproj.filters` entry:\n```xml\n\u003CItemGroup>\n  \u003CFilter Include=\"Config\">\n    \u003CUniqueIdentifier>{GUID-HERE}\u003C\u002FUniqueIdentifier>\n  \u003C\u002FFilter>\n\u003C\u002FItemGroup>\n\u003CItemGroup>\n  \u003CNone Include=\"config.json\">\n    \u003CFilter>Config\u003C\u002FFilter>\n  \u003C\u002FNone>\n\u003C\u002FItemGroup>\n```\n\n## Overview\n\nThe Windows SDK is a **C++ native SDK** designed for:\n- **Desktop applications** - Native Windows apps with full UI control\n- **Headless bots** - Join meetings without UI\n- **Raw media access** - Capture\u002Fsend audio\u002Fvideo streams\n- **Local recording** - Record meetings locally or to cloud\n\n### Key Architectural Insight\n\nThe SDK follows a **universal 3-step pattern** for every feature:\n1. **Get controller** (singleton): `meetingService->Get[Feature]Controller()`\n2. **Implement event listener**: `class MyListener : public I[Feature]Event { ... }`\n3. **Register and use**: `controller->SetEvent(listener)` then call methods\n\n**This works for ALL features**: audio, video, chat, recording, participants, screen sharing, breakout rooms, webinars, Q&A, polling, whiteboard, and 20+ more!\n\nLearn more: **[SDK Architecture Pattern Guide](concepts\u002Fsdk-architecture-pattern.md)**\n\n## Quick Start\n\n### 1. Download Windows SDK\n\nDownload from [Zoom Marketplace](https:\u002F\u002Fmarketplace.zoom.us\u002F):\n- Extract `zoom-meeting-sdk-windows_x86_64-{version}.zip`\n\n### 2. Setup Project Structure\n\n```\nyour-project\u002F\n  YourApp\u002F\n    SDK\u002F\n      x64\u002F\n        bin\u002F          # DLL files and dependencies\n        h\u002F            # Header files\n        lib\u002F          # sdk.lib\n      x86\u002F\n        bin\u002F\n        h\u002F\n        lib\u002F\n    YourApp.cpp\n    YourApp.vcxproj\n    config.json\n```\n\nCopy SDK files:\n```cmd\nxcopy \u002FE \u002FI sdk-package\\x64 your-project\\YourApp\\SDK\\x64\\\nxcopy \u002FE \u002FI sdk-package\\x86 your-project\\YourApp\\SDK\\x86\\\n```\n\n### 3. Install Dependencies (vcpkg)\n\n```powershell\n# Install vcpkg\ngit clone https:\u002F\u002Fgithub.com\u002FMicrosoft\u002Fvcpkg.git C:\\vcpkg\ncd C:\\vcpkg\n.\\bootstrap-vcpkg.bat\n.\\vcpkg integrate install\n\n# Install dependencies\n.\\vcpkg install jsoncpp:x64-windows\n.\\vcpkg install curl:x64-windows\n```\n\n### 4. Configure Visual Studio Project\n\n**Project Properties → C\u002FC++ → General → Additional Include Directories:**\n```\n$(SolutionDir)SDK\\$(PlatformTarget)\\h\nC:\\vcpkg\\packages\\jsoncpp_x64-windows\\include\nC:\\vcpkg\\packages\\curl_x64-windows\\include\n```\n\n**Project Properties → Linker → General → Additional Library Directories:**\n```\n$(SolutionDir)SDK\\$(PlatformTarget)\\lib\n```\n\n**Project Properties → Linker → Input → Additional Dependencies:**\n```\nsdk.lib\n```\n\n**Post-Build Event** (Copy DLLs to output):\n```cmd\nxcopy \u002FY \u002FD \"$(SolutionDir)SDK\\$(PlatformTarget)\\bin\\*.*\" \"$(OutDir)\"\n```\n\n### 5. Configure Credentials\n\nCreate `config.json`:\n```json\n{\n  \"sdk_jwt\": \"YOUR_JWT_TOKEN\",\n  \"meeting_number\": \"1234567890\",\n  \"passcode\": \"password123\",\n  \"zak\": \"\"\n}\n```\n\n### 6. Build & Run\n\n- Open solution in Visual Studio\n- Select x64 or x86 configuration\n- Press F5 to build and run\n\n## Core Workflow\n\n```\n┌─────────────┐    ┌─────────────┐    ┌─────────────┐    ┌─────────────┐\n│  InitSDK    │───►│  AuthSDK    │───►│ JoinMeeting │───►│ Raw Data    │\n│             │    │  (JWT)      │    │             │    │ Subscribe   │\n└─────────────┘    └─────────────┘    └─────────────┘    └─────────────┘\n                         │                   │\n                         ▼                   ▼\n                   OnAuthComplete      onInMeeting\n                     callback           callback\n```\n\n**⚠️ CRITICAL**: Add Windows message loop or callbacks won't fire!\n```cpp\nwhile (!done) {\n    MSG msg;\n    while (PeekMessage(&msg, NULL, 0, 0, PM_REMOVE)) {\n        TranslateMessage(&msg);\n        DispatchMessage(&msg);\n    }\n    std::this_thread::sleep_for(std::chrono::milliseconds(100));\n}\n```\nSee: [Windows Message Loop Guide](troubleshooting\u002Fwindows-message-loop.md)\n\n## Code Examples\n\n> **💡 Pro Tip**: These are minimal examples. For complete, tested code see:\n> - [Authentication Pattern](examples\u002Fauthentication-pattern.md) - Full auth workflow\n> - [Raw Video Capture](examples\u002Fraw-video-capture.md) - Complete video capture\n> - [SDK Architecture Pattern](concepts\u002Fsdk-architecture-pattern.md) - Implement any feature\n\n### Important: Include Order\n\n**CRITICAL**: Include headers in this exact order or you'll get build errors:\n\n```cpp\n#include \u003Cwindows.h>      \u002F\u002F MUST be first\n#include \u003Ccstdint>         \u002F\u002F MUST be second (SDK headers use uint32_t)\n\u002F\u002F ... other standard headers ...\n#include \u003Czoom_sdk.h>\n#include \u003Cmeeting_service_components\u002Fmeeting_audio_interface.h>  \u002F\u002F BEFORE participants!\n#include \u003Cmeeting_service_components\u002Fmeeting_participants_ctrl_interface.h>\n```\n\nSee: [Build Errors Guide](troubleshooting\u002Fbuild-errors.md) for all dependency fixes.\n\n### 1. Initialize SDK\n\n```cpp\n#include \u003Cwindows.h>\n#include \u003Ccstdint>\n#include \u003Czoom_sdk.h>\n\nusing namespace ZOOM_SDK_NAMESPACE;\n\nbool InitMeetingSDK() {\n    InitParam initParam;\n    initParam.strWebDomain = L\"https:\u002F\u002Fzoom.us\";\n    initParam.strSupportUrl = L\"https:\u002F\u002Fzoom.us\";\n    initParam.emLanguageID = LANGUAGE_English;\n    initParam.enableLogByDefault = true;\n    initParam.enableGenerateDump = true;\n    \n    SDKError err = InitSDK(initParam);\n    if (err != SDKERR_SUCCESS) {\n        std::wcout \u003C\u003C L\"InitSDK failed: \" \u003C\u003C err \u003C\u003C std::endl;\n        return false;\n    }\n    return true;\n}\n```\n\n### 2. Authenticate with JWT\n\n```cpp\n#include \u003Cwindows.h>\n#include \u003Ccstdint>\n#include \u003Cauth_service_interface.h>\n#include \"AuthServiceEventListener.h\"\n\nIAuthService* authService = nullptr;\n\nvoid OnAuthenticationComplete() {\n    std::cout \u003C\u003C \"Authentication successful!\" \u003C\u003C std::endl;\n    JoinMeeting();  \u002F\u002F Proceed to join meeting\n}\n\nbool AuthenticateSDK(const std::wstring& jwtToken) {\n    CreateAuthService(&authService);\n    if (!authService) return false;\n    \n    \u002F\u002F Set event listener BEFORE calling SDKAuth\n    authService->SetEvent(new AuthServiceEventListener(&OnAuthenticationComplete));\n    \n    \u002F\u002F Authenticate with JWT\n    AuthContext authContext;\n    authContext.jwt_token = jwtToken.c_str();\n    \n    SDKError err = authService->SDKAuth(authContext);\n    if (err != SDKERR_SUCCESS) {\n        std::wcout \u003C\u003C L\"SDKAuth failed: \" \u003C\u003C err \u003C\u003C std::endl;\n        return false;\n    }\n    \n    \u002F\u002F CRITICAL: Add message loop or callback won't fire!\n    \u002F\u002F See complete example: examples\u002Fauthentication-pattern.md\n    \n    return true;\n}\n```\n\n**AuthServiceEventListener.h:**\n```cpp\n#include \u003Cwindows.h>\n#include \u003Ccstdint>\n#include \u003Cauth_service_interface.h>\n#include \u003Ciostream>\n\nusing namespace ZOOM_SDK_NAMESPACE;\n\nclass AuthServiceEventListener : public IAuthServiceEvent {\npublic:\n    AuthServiceEventListener(void (*onComplete)()) \n        : onAuthComplete(onComplete) {}\n    \n    void onAuthenticationReturn(AuthResult ret) override {\n        if (ret == AUTHRET_SUCCESS && onAuthComplete) {\n            onAuthComplete();\n        } else {\n            std::cout \u003C\u003C \"Auth failed: \" \u003C\u003C ret \u003C\u003C std::endl;\n        }\n    }\n    \n    \u002F\u002F Must implement ALL pure virtual methods (6 total)\n    void onLoginReturnWithReason(LOGINSTATUS ret, IAccountInfo* info, LoginFailReason reason) override {}\n    void onLogout() override {}\n    void onZoomIdentityExpired() override {}\n    void onZoomAuthIdentityExpired() override {}\n#if defined(WIN32)\n    void onNotificationServiceStatus(SDKNotificationServiceStatus status, SDKNotificationServiceError error) override {}\n#endif\n\nprivate:\n    void (*onAuthComplete)();\n};\n```\n\n**See complete working code**: [Authentication Pattern Guide](examples\u002Fauthentication-pattern.md)\n\n### 3. Join Meeting\n\n```cpp\n#include \u003Cmeeting_service_interface.h>\n#include \"MeetingServiceEventListener.h\"\n\nIMeetingService* meetingService = nullptr;\n\nvoid OnMeetingJoined() {\n    std::cout \u003C\u003C \"Joining meeting...\" \u003C\u003C std::endl;\n}\n\nvoid OnInMeeting() {\n    std::cout \u003C\u003C \"In meeting now!\" \u003C\u003C std::endl;\n    \u002F\u002F Start raw data capture here\n}\n\nvoid OnMeetingEnds() {\n    std::cout \u003C\u003C \"Meeting ended\" \u003C\u003C std::endl;\n}\n\nbool JoinMeeting(UINT64 meetingNumber, const std::wstring& password) {\n    CreateMeetingService(&meetingService);\n    if (!meetingService) return false;\n    \n    \u002F\u002F Set event listener\n    meetingService->SetEvent(\n        new MeetingServiceEventListener(&OnMeetingJoined, &OnMeetingEnds, &OnInMeeting)\n    );\n    \n    \u002F\u002F Prepare join parameters\n    JoinParam joinParam;\n    joinParam.userType = SDK_UT_WITHOUT_LOGIN;\n    \n    JoinParam4WithoutLogin& params = joinParam.param.withoutloginuserJoin;\n    params.meetingNumber = meetingNumber;\n    params.userName = L\"Bot User\";\n    params.psw = password.c_str();\n    params.isVideoOff = false;\n    params.isAudioOff = false;\n    \n    SDKError err = meetingService->Join(joinParam);\n    if (err != SDKERR_SUCCESS) {\n        std::wcout \u003C\u003C L\"Join failed: \" \u003C\u003C err \u003C\u003C std::endl;\n        return false;\n    }\n    return true;\n}\n```\n\n**MeetingServiceEventListener.h:**\n```cpp\n#include \u003Cwindows.h>\n#include \u003Ccstdint>\n#include \u003Cmeeting_service_interface.h>\n#include \u003Ciostream>\n\nusing namespace ZOOM_SDK_NAMESPACE;\n\nclass MeetingServiceEventListener : public IMeetingServiceEvent {\npublic:\n    MeetingServiceEventListener(\n        void (*onJoined)(),\n        void (*onEnded)(), \n        void (*onInMeeting)()\n    ) : onMeetingJoined(onJoined), \n        onMeetingEnded(onEnded),\n        onInMeetingCallback(onInMeeting) {}\n    \n    void onMeetingStatusChanged(MeetingStatus status, int iResult) override {\n        if (status == MEETING_STATUS_CONNECTING) {\n            if (onMeetingJoined) onMeetingJoined();\n        }\n        else if (status == MEETING_STATUS_INMEETING) {\n            if (onInMeetingCallback) onInMeetingCallback();\n        }\n        else if (status == MEETING_STATUS_ENDED) {\n            if (onMeetingEnded) onMeetingEnded();\n        }\n    }\n    \n    \u002F\u002F Must implement ALL pure virtual methods (9 total)\n    void onMeetingStatisticsWarningNotification(StatisticsWarningType type) override {}\n    void onMeetingParameterNotification(const MeetingParameter* param) override {}\n    void onSuspendParticipantsActivities() override {}\n    void onAICompanionActiveChangeNotice(bool isActive) override {}\n    void onMeetingTopicChanged(const zchar_t* sTopic) override {}\n    void onMeetingFullToWatchLiveStream(const zchar_t* sLiveStreamUrl) override {}\n    void onUserNetworkStatusChanged(MeetingComponentType type, ConnectionQuality level, unsigned int userId, bool uplink) override {}\n#if defined(WIN32)\n    void onAppSignalPanelUpdated(IMeetingAppSignalHandler* pHandler) override {}\n#endif\n\nprivate:\n    void (*onMeetingJoined)();\n    void (*onMeetingEnded)();\n    void (*onInMeetingCallback)();\n};\n```\n\n**See all required methods**: [Interface Methods Guide](references\u002Finterface-methods.md)\n\n### 4. Subscribe to Raw Video\n\n```cpp\n#include \u003Cwindows.h>\n#include \u003Ccstdint>\n#include \u003Crawdata\u002Fzoom_rawdata_api.h>\n#include \u003Crawdata\u002Frawdata_renderer_interface.h>\n#include \u003Czoom_sdk_raw_data_def.h>  \u002F\u002F REQUIRED for YUVRawDataI420\n#include \"ZoomSDKRendererDelegate.h\"\n\nIZoomSDKRenderer* videoHelper = nullptr;\nZoomSDKRendererDelegate* videoSource = new ZoomSDKRendererDelegate();\n\nbool StartVideoCapture(uint32_t userId) {\n    \u002F\u002F STEP 1: Start raw recording FIRST (required!)\n    IMeetingRecordingController* recordCtrl = \n        meetingService->GetMeetingRecordingController();\n    \n    SDKError canStart = recordCtrl->CanStartRawRecording();\n    if (canStart != SDKERR_SUCCESS) {\n        std::cout \u003C\u003C \"Cannot start recording: \" \u003C\u003C canStart \u003C\u003C std::endl;\n        return false;\n    }\n    \n    recordCtrl->StartRawRecording();\n    \n    \u002F\u002F Wait for recording to initialize\n    std::this_thread::sleep_for(std::chrono::milliseconds(500));\n    \n    \u002F\u002F STEP 2: Create renderer\n    SDKError err = createRenderer(&videoHelper, videoSource);\n    if (err != SDKERR_SUCCESS || !videoHelper) {\n        std::cout \u003C\u003C \"createRenderer failed: \" \u003C\u003C err \u003C\u003C std::endl;\n        return false;\n    }\n    \n    \u002F\u002F STEP 3: Set resolution and subscribe\n    videoHelper->setRawDataResolution(ZoomSDKResolution_720P);\n    err = videoHelper->subscribe(userId, RAW_DATA_TYPE_VIDEO);\n    if (err != SDKERR_SUCCESS) {\n        std::cout \u003C\u003C \"Subscribe failed: \" \u003C\u003C err \u003C\u003C std::endl;\n        return false;\n    }\n    \n    std::cout \u003C\u003C \"Video capture started! Frames arrive in onRawDataFrameReceived()\" \u003C\u003C std::endl;\n    return true;\n}\n```\n\n**ZoomSDKRendererDelegate.h:**\n```cpp\n#include \u003Cwindows.h>\n#include \u003Ccstdint>\n#include \u003Crawdata\u002Frawdata_renderer_interface.h>\n#include \u003Czoom_sdk_raw_data_def.h>\n#include \u003Cfstream>\n#include \u003Ciostream>\n\nusing namespace ZOOM_SDK_NAMESPACE;\n\nclass ZoomSDKRendererDelegate : public IZoomSDKRendererDelegate {\npublic:\n    void onRawDataFrameReceived(YUVRawDataI420* data) override {\n        if (!data) return;\n        \n        \u002F\u002F YUV420 (I420) format: Y plane + U plane + V plane\n        int width = data->GetStreamWidth();\n        int height = data->GetStreamHeight();\n        \n        \u002F\u002F Calculate buffer sizes\n        \u002F\u002F Y = full resolution, U\u002FV = quarter resolution each\n        size_t ySize = width * height;\n        size_t uvSize = ySize \u002F 4;  \u002F\u002F (width\u002F2) * (height\u002F2)\n        \n        \u002F\u002F Total size: width * height * 1.5 bytes\n        \n        \u002F\u002F Save to file (playback: ffplay -f rawvideo -pixel_format yuv420p -video_size 1280x720 output.yuv)\n        std::ofstream outputFile(\"output.yuv\", std::ios::binary | std::ios::app);\n        outputFile.write(data->GetYBuffer(), ySize);    \u002F\u002F Brightness\n        outputFile.write(data->GetUBuffer(), uvSize);   \u002F\u002F Blue-difference\n        outputFile.write(data->GetVBuffer(), uvSize);   \u002F\u002F Red-difference\n        outputFile.close();\n    }\n    \n    void onRawDataStatusChanged(RawDataStatus status) override {\n        std::cout \u003C\u003C \"Raw data status: \" \u003C\u003C status \u003C\u003C std::endl;\n    }\n    \n    void onRendererBeDestroyed() override {\n        std::cout \u003C\u003C \"Renderer destroyed\" \u003C\u003C std::endl;\n    }\n};\n```\n\n**Complete video capture guide**: [Raw Video Capture Guide](examples\u002Fraw-video-capture.md)\n\n### 5. Subscribe to Raw Audio\n\n```cpp\n#include \u003Crawdata\u002Frawdata_audio_helper_interface.h>\n\nclass ZoomSDKAudioRawDataDelegate : public IZoomSDKAudioRawDataDelegate {\npublic:\n    void onMixedAudioRawDataReceived(AudioRawData* data) override {\n        \u002F\u002F Process PCM audio (mixed from all participants)\n        std::ofstream pcmFile(\"audio.pcm\", std::ios::binary | std::ios::app);\n        pcmFile.write((char*)data->GetBuffer(), data->GetBufferLen());\n        pcmFile.close();\n    }\n    \n    void onOneWayAudioRawDataReceived(AudioRawData* data, uint32_t node_id) override {\n        \u002F\u002F Process audio from specific participant\n    }\n};\n\n\u002F\u002F Subscribe to audio\nIZoomSDKAudioRawDataHelper* audioHelper = GetAudioRawdataHelper();\naudioHelper->subscribe(new ZoomSDKAudioRawDataDelegate());\n```\n\n### 6. Main Message Loop (CRITICAL!)\n\n**⚠️ WITHOUT THIS, CALLBACKS WON'T FIRE!**\n\n```cpp\n#include \u003Cwindows.h>\n#include \u003Cthread>\n#include \u003Cchrono>\n\nint main() {\n    \u002F\u002F Initialize COM\n    CoInitialize(NULL);\n    \n    \u002F\u002F Load config and initialize\n    LoadConfig();\n    InitMeetingSDK();\n    AuthenticateSDK(sdk_jwt);\n    \n    \u002F\u002F CRITICAL: Windows message loop for SDK callbacks\n    \u002F\u002F SDK uses Windows message pump to dispatch callbacks\n    \u002F\u002F Without this, callbacks are queued but NEVER fire!\n    MSG msg;\n    while (!g_exit) {\n        \u002F\u002F Process all pending Windows messages\n        while (PeekMessage(&msg, NULL, 0, 0, PM_REMOVE)) {\n            if (msg.message == WM_QUIT) {\n                g_exit = true;\n                break;\n            }\n            TranslateMessage(&msg);\n            DispatchMessage(&msg);\n        }\n        \n        \u002F\u002F Small sleep to avoid busy-waiting\n        std::this_thread::sleep_for(std::chrono::milliseconds(100));\n    }\n    \n    \u002F\u002F Cleanup\n    CleanSDK();\n    CoUninitialize();\n    \n    return 0;\n}\n```\n\n**Why message loop is critical**: The SDK uses Windows COM\u002Fmessaging for async callbacks. Without `PeekMessage()`, the SDK queues messages but they're never retrieved\u002Fdispatched, so callbacks never execute.\n\n**Symptoms without message loop**:\n- Authentication timeout (even with valid JWT)\n- Meeting join timeout\n- No callback events fire\n- Appears like network\u002Fauth issue but it's a message loop issue\n\n**See detailed explanation**: [Windows Message Loop Guide](troubleshooting\u002Fwindows-message-loop.md)\n\n## Common Issues & Solutions\n\n| Issue | Solution |\n|-------|----------|\n| **Callbacks don't fire \u002F Auth timeout** | Add Windows message loop → [Guide](troubleshooting\u002Fwindows-message-loop.md) |\n| **`uint32_t` \u002F `AudioType` errors** | Fix include order → [Guide](troubleshooting\u002Fbuild-errors.md) |\n| **Abstract class error** | Implement all virtual methods → [Guide](references\u002Finterface-methods.md) |\n| **How to implement [feature]?** | Follow universal pattern → [Guide](concepts\u002Fsdk-architecture-pattern.md) |\n| **Authentication fails** | Check JWT token & error codes → [Guide](troubleshooting\u002Fcommon-issues.md) |\n| **No video frames received** | Call StartRawRecording() first → [Guide](examples\u002Fraw-video-capture.md) |\n\n**Complete troubleshooting**: [Common Issues Guide](troubleshooting\u002Fcommon-issues.md)\n\n## How to Implement Any Feature\n\nThe SDK has **35+ feature controllers** (audio, video, chat, recording, participants, screen sharing, breakout rooms, webinars, Q&A, polling, whiteboard, captions, AI companion, etc.).\n\n**Universal pattern that works for ALL features:**\n\n1. **Get the controller** (singleton):\n   ```cpp\n   IMeetingAudioController* audioCtrl = meetingService->GetMeetingAudioController();\n   IMeetingChatController* chatCtrl = meetingService->GetMeetingChatController();\n   \u002F\u002F ... 33 more controllers available\n   ```\n\n2. **Implement event listener** (observer pattern):\n   ```cpp\n   class MyAudioListener : public IMeetingAudioCtrlEvent {\n       void onUserAudioStatusChange(IList\u003CIUserAudioStatus*>* lst) override {\n           \u002F\u002F React to audio events\n       }\n       \u002F\u002F ... implement all required methods\n   };\n   ```\n\n3. **Register and use**:\n   ```cpp\n   audioCtrl->SetEvent(new MyAudioListener());\n   audioCtrl->MuteAudio(userId, true);  \u002F\u002F Use feature\n   ```\n\n**Complete guide with examples**: [SDK Architecture Pattern](concepts\u002Fsdk-architecture-pattern.md)\n\n## Available Examples\n\n| Example | Description |\n|---------|-------------|\n| **SkeletonDemo** | Minimal join meeting - start here |\n| **GetVideoRawData** | Subscribe to raw video streams |\n| **GetAudioRawData** | Subscribe to raw audio streams |\n| **SendVideoRawData** | Send custom video as virtual camera |\n| **SendAudioRawData** | Send custom audio as virtual mic |\n| **GetShareRawData** | Capture screen share content |\n| **LocalRecording** | Local MP4 recording |\n| **ChatDemo** | In-meeting chat functionality |\n| **CaptionDemo** | Closed caption\u002Flive transcription |\n| **BreakoutDemo** | Breakout room management |\n\n## Detailed References\n\n### 🎯 Core Concepts (START HERE!)\n- **[concepts\u002Fsdk-architecture-pattern.md](concepts\u002Fsdk-architecture-pattern.md)** - **Universal pattern for implementing ANY feature** - Understanding this unlocks the entire SDK!\n\n### 📚 Complete Examples\n- **[examples\u002Fauthentication-pattern.md](examples\u002Fauthentication-pattern.md)** - Complete working authentication with JWT tokens\n- **[examples\u002Fraw-video-capture.md](examples\u002Fraw-video-capture.md)** - YUV420 video capture with detailed format explanation\n\n### 🔧 Troubleshooting Guides\n- **[troubleshooting\u002Fwindows-message-loop.md](troubleshooting\u002Fwindows-message-loop.md)** - **Why callbacks don't fire** (MOST CRITICAL!)\n- **[troubleshooting\u002Fbuild-errors.md](troubleshooting\u002Fbuild-errors.md)** - SDK header dependency issues and fixes\n- **[troubleshooting\u002Fcommon-issues.md](troubleshooting\u002Fcommon-issues.md)** - Quick diagnostic workflow and error code tables\n\n### 📖 References\n- **[references\u002Finterface-methods.md](references\u002Finterface-methods.md)** - How to implement ALL required virtual methods\n- **[references\u002Fwindows-reference.md](references\u002Fwindows-reference.md)** - Dependencies, Visual Studio setup\n- **[..\u002Freferences\u002Fauthorization.md](..\u002Freferences\u002Fauthorization.md)** - SDK JWT generation\n- **[..\u002Freferences\u002Fbot-authentication.md](..\u002Freferences\u002Fbot-authentication.md)** - Bot token types (ZAK, OBF, JWT)\n\n### 🎨 Feature-Specific Guides\n- **[..\u002Freferences\u002Fbreakout-rooms.md](..\u002Freferences\u002Fbreakout-rooms.md)** - Programmatic breakout room management\n- **[..\u002Freferences\u002Fai-companion.md](..\u002Freferences\u002Fai-companion.md)** - AI Companion controls\n\n## Sample Repositories\n\n| Repository | Description |\n|------------|-------------|\n| [meetingsdk-windows-raw-recording-sample](https:\u002F\u002Fgithub.com\u002Fzoom\u002Fmeetingsdk-windows-raw-recording-sample) | Official raw data capture samples |\n| [meetingsdk-windows-local-recording-sample](https:\u002F\u002Fgithub.com\u002Fzoom\u002Fmeetingsdk-windows-local-recording-container-sample) | Local recording with Docker |\n\n## Playing Raw Video\u002FAudio Files\n\nRaw YUV\u002FPCM files have no headers - you must specify format explicitly.\n\n### Play Raw YUV Video\n```cmd\nffplay -video_size 1280x720 -pixel_format yuv420p -f rawvideo output.yuv\n```\n\n### Convert YUV to MP4\n```cmd\nffmpeg -video_size 1280x720 -pixel_format yuv420p -f rawvideo -i output.yuv -c:v libx264 output.mp4\n```\n\n### Play Raw PCM Audio\n```cmd\nffplay -f s16le -ar 32000 -ac 1 audio.pcm\n```\n\n### Convert PCM to WAV\n```cmd\nffmpeg -f s16le -ar 32000 -ac 1 -i audio.pcm output.wav\n```\n\n### Combine Video + Audio\n```cmd\nffmpeg -video_size 1280x720 -pixel_format yuv420p -f rawvideo -i output.yuv ^\n       -f s16le -ar 32000 -ac 1 -i audio.pcm ^\n       -c:v libx264 -c:a aac -shortest output.mp4\n```\n\n**Key flags:**\n| Flag | Description |\n|------|-------------|\n| `-video_size WxH` | Frame dimensions (e.g., 1280x720) |\n| `-pixel_format yuv420p` | I420\u002FYUV420 planar format |\n| `-f rawvideo` | Raw video input (no container) |\n| `-f s16le` | Signed 16-bit little-endian PCM |\n| `-ar 32000` | Sample rate (Zoom uses 32kHz) |\n| `-ac 1` | Mono (use `-ac 2` for stereo) |\n\n## Authentication Requirements (2026 Update)\n\n> **Important**: Beginning **March 2, 2026**, apps joining meetings outside their account must be authorized.\n\nUse one of:\n- **App Privilege Token (OBF)** - Recommended for bots (`app_privilege_token` in JoinParam)\n- **ZAK Token** - Zoom Access Key (`userZAK` in JoinParam)\n- **On Behalf Token** - For specific use cases (`onBehalfToken` in JoinParam)\n\n## 📖 Complete Documentation Library\n\nThis skill includes comprehensive guides created from real-world debugging:\n\n### 🎯 Start Here\n- **[SDK Architecture Pattern](concepts\u002Fsdk-architecture-pattern.md)** - Master document: Universal pattern for ANY feature\n- **[SKILL.md](SKILL.md)** - Complete navigation guide\n\n### 📚 By Category\n\n**Core Concepts:**\n- [SDK Architecture Pattern](concepts\u002Fsdk-architecture-pattern.md) - How every feature works (singleton + observer pattern)\n\n**Complete Examples:**\n- [Authentication Pattern](examples\u002Fauthentication-pattern.md) - Working JWT auth with all code\n- [Raw Video Capture](examples\u002Fraw-video-capture.md) - YUV420 video capture explained\n\n**Troubleshooting:**\n- [Windows Message Loop](troubleshooting\u002Fwindows-message-loop.md) - **CRITICAL**: Why callbacks don't fire\n- [Build Errors](troubleshooting\u002Fbuild-errors.md) - SDK header dependency fixes\n- [Common Issues](troubleshooting\u002Fcommon-issues.md) - Quick diagnostics & error codes\n\n**References:**\n- [Interface Methods](references\u002Finterface-methods.md) - All required virtual methods (6 auth + 9 meeting)\n- [Windows Reference](references\u002Fwindows-reference.md) - Platform setup\n- [Authorization](..\u002Freferences\u002Fauthorization.md) - JWT generation\n- [Bot Authentication](..\u002Freferences\u002Fbot-authentication.md) - Bot token types\n- [Breakout Rooms](..\u002Freferences\u002Fbreakout-rooms.md) - Breakout room API\n- [AI Companion](..\u002Freferences\u002Fai-companion.md) - AI features\n\n### 🚨 Most Critical Issues (From Real Debugging)\n\n1. **Callbacks not firing** → Missing Windows message loop (99% of issues)\n   - See: [Windows Message Loop Guide](troubleshooting\u002Fwindows-message-loop.md)\n\n2. **Build errors** → SDK header dependencies (`uint32_t`, `AudioType`, etc.)\n   - See: [Build Errors Guide](troubleshooting\u002Fbuild-errors.md)\n\n3. **Abstract class errors** → Missing virtual method implementations\n   - See: [Interface Methods Guide](references\u002Finterface-methods.md)\n\n### 💡 Key Insight\n\n**Once you learn the 3-step pattern, you can implement ANY of the 35+ features:**\n1. Get controller → 2. Implement event listener → 3. Register and use\n\nSee: [SDK Architecture Pattern](concepts\u002Fsdk-architecture-pattern.md)\n\n## Official Resources\n\n- **Official docs**: https:\u002F\u002Fdevelopers.zoom.us\u002Fdocs\u002Fmeeting-sdk\u002Fwindows\u002F\n- **API Reference**: https:\u002F\u002Fmarketplacefront.zoom.us\u002Fsdk\u002Fmeeting\u002Fwindows\u002Fannotated.html\n- **Developer forum**: https:\u002F\u002Fdevforum.zoom.us\u002F\n- **SDK download**: https:\u002F\u002Fmarketplace.zoom.us\u002F\n\n---\n\n**Documentation Version**: Based on Zoom Windows Meeting SDK v6.7.2.26830\n\n**Need help?** Start with [SKILL.md](SKILL.md) for complete navigation.\n\n\n## Merged from meeting-sdk\u002Fwindows\u002FSKILL.md\n\n# Zoom Windows Meeting SDK - Complete Documentation Index\n\n## 🚀 Quick Start Path\n\n**If you're new to the SDK, follow this order:**\n\n1. **Read the architecture pattern** → [concepts\u002Fsdk-architecture-pattern.md](concepts\u002Fsdk-architecture-pattern.md)\n   - This teaches you the universal formula that applies to ALL features\n   - Once you understand this, you can implement any feature by reading the `.h` files\n\n2. **Fix build errors** → [troubleshooting\u002Fbuild-errors.md](troubleshooting\u002Fbuild-errors.md)\n   - SDK header dependencies issues\n   - Required include order\n\n3. **Implement authentication** → [examples\u002Fauthentication-pattern.md](examples\u002Fauthentication-pattern.md)\n   - Complete working JWT authentication code\n\n4. **Fix callback issues** → [troubleshooting\u002Fwindows-message-loop.md](troubleshooting\u002Fwindows-message-loop.md)\n   - **CRITICAL**: Why callbacks don't fire without Windows message loop\n   - This was the hardest issue to diagnose!\n\n5. **Implement virtual methods** → [references\u002Finterface-methods.md](references\u002Finterface-methods.md)\n   - Complete lists of all required methods\n   - How to avoid abstract class errors\n\n6. **Capture video (optional)** → [examples\u002Fraw-video-capture.md](examples\u002Fraw-video-capture.md)\n   - YUV420 format explained\n   - Complete raw data capture workflow\n\n7. **Troubleshoot any issues** → [troubleshooting\u002Fcommon-issues.md](troubleshooting\u002Fcommon-issues.md)\n   - Quick diagnostic checklist\n   - Error code tables\n   - \"If you see X, do Y\" reference\n\n---\n\n## 📂 Documentation Structure\n\n```\nmeeting-sdk\u002Fwindows\u002F\n├── SKILL.md                           # Main skill overview\n├── SKILL.md                           # This file - navigation guide\n│\n├── concepts\u002F                          # Core architectural patterns\n│   ├── sdk-architecture-pattern.md   # THE MOST IMPORTANT DOC\n│   │                                  # Universal formula for ANY feature\n│   ├── singleton-hierarchy.md        # Navigation guide for SDK services\n│   │                                  # 4-level deep service tree, when\u002Fhow\n│   ├── custom-ui-architecture.md     # How Custom UI rendering works\n│   │                                  # Child HWNDs, D3D, layout, events\n│   └── custom-ui-vs-raw-data.md      # SDK-rendered vs self-rendered\n│                                      # Decision guide for Custom UI approach\n│\n├── examples\u002F                          # Complete working code\n│   ├── authentication-pattern.md     # JWT auth with full code\n│   ├── raw-video-capture.md          # Video capture with YUV420 details\n│   │                                  # Recording vs Streaming, permissions\n│   ├── custom-ui-video-rendering.md  # Custom UI with video container\n│   │                                  # Active speaker + gallery layout\n│   ├── breakout-rooms.md             # Complete breakout room guide\n│   │                                  # 5 roles, create\u002Fmanage\u002Fjoin\n│   ├── chat.md                       # Send\u002Freceive chat messages\n│   │                                  # Rich text, threading, file transfer\n│   ├── captions-transcription.md     # Live transcription & closed captions\n│   │                                  # Multi-language translation\n│   ├── local-recording.md            # Local MP4 recording\n│   │                                  # Permission flow, encoder monitoring\n│   ├── share-raw-data-capture.md     # Screen share raw data capture\n│   │                                  # YUV420 frames from shared content\n│   └── send-raw-data.md              # Virtual camera\u002Fmic\u002Fshare\n│                                      # Send custom video\u002Faudio\u002Fshare\n│\n├── troubleshooting\u002F                   # Problem solving guides\n│   ├── windows-message-loop.md       # CRITICAL - Why callbacks fail\n│   ├── build-errors.md               # Header dependency fixes + MSBuild\n│   └── common-issues.md              # Quick diagnostic workflow\n│\n└── references\u002F                        # Reference documentation\n    ├── interface-methods.md           # Required virtual methods\n    │                                  # Auth(6) + Meeting(9) + CustomUI(13)\n    ├── windows-reference.md           # Platform setup\n    ├── authorization.md               # JWT generation\n    ├── bot-authentication.md          # Bot token types\n    ├── breakout-rooms.md              # Breakout room features\n    └── ai-companion.md                # AI Companion features\n```\n\n---\n\n## 🎯 By Use Case\n\n### I want to build a meeting bot\n1. [SDK Architecture Pattern](concepts\u002Fsdk-architecture-pattern.md) - Understand the pattern\n2. [Authentication Pattern](examples\u002Fauthentication-pattern.md) - Join meetings\n3. [Windows Message Loop](troubleshooting\u002Fwindows-message-loop.md) - Fix callback issues\n4. [Interface Methods](references\u002Finterface-methods.md) - Implement callbacks\n\n### I'm getting build errors\n1. [Build Errors Guide](troubleshooting\u002Fbuild-errors.md) - SDK header dependencies\n2. [Interface Methods](references\u002Finterface-methods.md) - Abstract class errors\n3. [Common Issues](troubleshooting\u002Fcommon-issues.md) - Linker errors\n\n### I'm getting runtime errors\n1. [Windows Message Loop](troubleshooting\u002Fwindows-message-loop.md) - Callbacks not firing\n2. [Authentication Pattern](examples\u002Fauthentication-pattern.md) - Auth timeout\n3. [Common Issues](troubleshooting\u002Fcommon-issues.md) - Error code tables\n\n### I want to build a Custom UI meeting app\n1. [Custom UI Architecture](concepts\u002Fcustom-ui-architecture.md) - How SDK rendering works\n2. [SDK-Rendered vs Self-Rendered](concepts\u002Fcustom-ui-vs-raw-data.md) - Choose your approach\n3. [Custom UI Video Rendering](examples\u002Fcustom-ui-video-rendering.md) - Complete working code\n4. [Interface Methods](references\u002Finterface-methods.md) - 13 Custom UI virtual methods\n5. [Build Errors Guide](troubleshooting\u002Fbuild-errors.md) - MSBuild from git bash\n\n### I want to capture video\u002Faudio\n1. [Raw Video Capture](examples\u002Fraw-video-capture.md) - Complete video workflow\n   - Recording vs Streaming approaches\n   - Permission requirements (host, OAuth tokens)\n   - Audio PCM capture\n2. [Share Raw Data Capture](examples\u002Fshare-raw-data-capture.md) - Screen share capture\n   - Subscribe to RAW_DATA_TYPE_SHARE\n   - Handle dynamic resolution\n3. [SDK Architecture Pattern](concepts\u002Fsdk-architecture-pattern.md) - Controller pattern\n4. [Common Issues](troubleshooting\u002Fcommon-issues.md) - No frames received\n\n### I want to use breakout rooms\n1. [Breakout Rooms Guide](examples\u002Fbreakout-rooms.md) - Complete breakout room workflow\n   - 5 roles: Creator, Admin, Data, Assistant, Attendee\n   - Create, configure, manage, join\u002Fleave rooms\n2. [Common Issues](troubleshooting\u002Fcommon-issues.md) - Breakout room error codes\n\n### I want to implement chat\n1. [Chat Guide](examples\u002Fchat.md) - Send\u002Freceive messages\n   - Rich text formatting (bold, italic, links)\n   - Private messages and threading\n   - File transfer events\n\n### I want to use live transcription\n1. [Captions & Transcription Guide](examples\u002Fcaptions-transcription.md) - Live transcription\n   - Automatic speech-to-text\n   - Multi-language translation\n   - Manual closed captions (host feature)\n\n### I want to record meetings\n1. [Local Recording Guide](examples\u002Flocal-recording.md) - Local MP4 recording\n   - Permission request workflow\n   - zTscoder.exe encoder monitoring\n   - Gallery view vs active speaker\n\n### I want to implement a specific feature\n1. [SDK Architecture Pattern](concepts\u002Fsdk-architecture-pattern.md) - **START HERE!**\n2. Find the controller in `SDK\u002Fx64\u002Fh\u002Fmeeting_service_interface.h`\n3. Find the header in `SDK\u002Fx64\u002Fh\u002Fmeeting_service_components\u002F`\n4. Follow the universal pattern: Get controller → Implement listener → Use methods\n\n### I want to understand the SDK architecture\n1. [SDK Architecture Pattern](concepts\u002Fsdk-architecture-pattern.md) - Complete architecture overview\n2. [Singleton Hierarchy](concepts\u002Fsingleton-hierarchy.md) - Navigate the service tree (4 levels)\n3. [Interface Methods](references\u002Finterface-methods.md) - Event listener pattern\n4. [Authentication Pattern](examples\u002Fauthentication-pattern.md) - Service pattern\n\n---\n\n## 🔥 Most Critical Documents\n\n### 1. SDK Architecture Pattern (⭐ MASTER DOCUMENT)\n**[concepts\u002Fsdk-architecture-pattern.md](concepts\u002Fsdk-architecture-pattern.md)**\n\nThis is THE most important document. It teaches the universal 3-step pattern:\n1. Get controller (singleton pattern)\n2. Implement event listener (observer pattern)\n3. Register and use\n\nOnce you understand this pattern, you can implement **any of the 35+ features** by just reading the SDK headers.\n\n**Key insight**: The Zoom SDK follows a perfectly consistent architecture. Every feature works the same way.\n\n---\n\n### 2. Windows Message Loop (⚠️ MOST COMMON ISSUE)\n**[troubleshooting\u002Fwindows-message-loop.md](troubleshooting\u002Fwindows-message-loop.md)**\n\n99% of \"callbacks not firing\" issues are caused by missing Windows message loop. This document explains:\n- Why SDK requires `PeekMessage()` loop\n- How to implement it correctly\n- How to diagnose callback issues\n\n**This was the hardest bug to find during development** (took ~2 hours).\n\n---\n\n### 3. Build Errors Guide\n**[troubleshooting\u002Fbuild-errors.md](troubleshooting\u002Fbuild-errors.md)**\n\nSDK headers have dependency bugs that cause build errors. This document provides:\n- Required include order\n- Missing `\u003Ccstdint>` fix\n- Missing `AudioType` fix\n- Missing `YUVRawDataI420` fix\n\n---\n\n## 📊 By Document Type\n\n### Concepts (Why and How)\n- [SDK Architecture Pattern](concepts\u002Fsdk-architecture-pattern.md) - Universal implementation pattern\n- [Singleton Hierarchy](concepts\u002Fsingleton-hierarchy.md) - Navigation guide for SDK services (4 levels deep)\n\n### Examples (Complete Working Code)\n- [Authentication Pattern](examples\u002Fauthentication-pattern.md) - JWT authentication\n- [Raw Video Capture](examples\u002Fraw-video-capture.md) - Video capture with YUV420, recording vs streaming\n- [Custom UI Video Rendering](examples\u002Fcustom-ui-video-rendering.md) - SDK-rendered video containers\n- [Breakout Rooms](examples\u002Fbreakout-rooms.md) - Create, manage, join breakout rooms\n- [Chat](examples\u002Fchat.md) - Send\u002Freceive messages with rich formatting\n- [Captions & Transcription](examples\u002Fcaptions-transcription.md) - Live transcription and closed captions\n- [Local Recording](examples\u002Flocal-recording.md) - Local MP4 recording with permission flow\n- [Share Raw Data Capture](examples\u002Fshare-raw-data-capture.md) - Screen share raw data capture\n- [Send Raw Data](examples\u002Fsend-raw-data.md) - Virtual camera, microphone, and share\n\n### Troubleshooting (Problem Solving)\n- [Windows Message Loop](troubleshooting\u002Fwindows-message-loop.md) - Callback issues\n- [Build Errors](troubleshooting\u002Fbuild-errors.md) - Compilation issues\n- [Common Issues](troubleshooting\u002Fcommon-issues.md) - Quick diagnostics\n\n### References (Lookup Information)\n- [Interface Methods](references\u002Finterface-methods.md) - Required virtual methods\n- [Windows Reference](references\u002Fwindows-reference.md) - Platform setup\n- [Authorization](..\u002Freferences\u002Fauthorization.md) - JWT generation\n- [Bot Authentication](..\u002Freferences\u002Fbot-authentication.md) - Bot tokens\n- [Breakout Rooms](..\u002Freferences\u002Fbreakout-rooms.md) - Breakout room API\n- [AI Companion](..\u002Freferences\u002Fai-companion.md) - AI features\n\n---\n\n## 💡 Key Learnings from Real Debugging\n\nThese documents were created from actual debugging of a non-functional Zoom SDK sample. Here are the key insights:\n\n### Critical Discoveries:\n\n1. **Windows Message Loop is MANDATORY** (not optional)\n   - SDK uses Windows message pump for callbacks\n   - Without it, callbacks are queued but never fire\n   - Manifests as \"authentication timeout\" even with valid JWT\n   - See: [Windows Message Loop Guide](troubleshooting\u002Fwindows-message-loop.md)\n\n2. **SDK Headers Have Dependency Bugs**\n   - Missing `#include \u003Ccstdint>` in SDK headers\n   - `meeting_participants_ctrl_interface.h` doesn't include `meeting_audio_interface.h`\n   - `rawdata_renderer_interface.h` only forward-declares `YUVRawDataI420`\n   - See: [Build Errors Guide](troubleshooting\u002Fbuild-errors.md)\n\n3. **Include Order is CRITICAL**\n   - `\u003Cwindows.h>` must be FIRST\n   - `\u003Ccstdint>` must be SECOND\n   - Then SDK headers in specific order\n   - See: [Build Errors Guide](troubleshooting\u002Fbuild-errors.md)\n\n4. **ALL Virtual Methods Must Be Implemented**\n   - Including WIN32-conditional methods\n   - SDK v6.7.2 requires 6 auth methods + 9 meeting methods\n   - Different versions have different requirements\n   - See: [Interface Methods Guide](references\u002Finterface-methods.md)\n\n5. **The Architecture is Beautifully Consistent**\n   - Every feature follows the same 3-step pattern\n   - Controllers are singletons\n   - Event listeners use observer pattern\n   - Once you learn the pattern, you can implement any feature\n   - See: [SDK Architecture Pattern](concepts\u002Fsdk-architecture-pattern.md)\n\n---\n\n## 🎓 Learning Path by Skill Level\n\n### Beginner (Never used Zoom SDK)\n1. Read [SDK Architecture Pattern](concepts\u002Fsdk-architecture-pattern.md) to understand the overall design\n2. Follow [Authentication Pattern](examples\u002Fauthentication-pattern.md) to join your first meeting\n3. Reference [Common Issues](troubleshooting\u002Fcommon-issues.md) when you hit problems\n\n### Intermediate (Familiar with SDK basics)\n1. Deep dive into [SDK Architecture Pattern](concepts\u002Fsdk-architecture-pattern.md) - implement multiple features\n2. Learn [Raw Video Capture](examples\u002Fraw-video-capture.md) for media processing\n3. Use [Interface Methods](references\u002Finterface-methods.md) as reference\n\n### Advanced (Building production bots)\n1. Study [SDK Architecture Pattern](concepts\u002Fsdk-architecture-pattern.md) - learn to implement ANY feature\n2. Master [Windows Message Loop](troubleshooting\u002Fwindows-message-loop.md) - understand async callback flow\n3. Reference SDK headers directly using the universal pattern\n\n---\n\n## 🔍 How to Find What You Need\n\n### \"My code won't compile\"\n→ [Build Errors Guide](troubleshooting\u002Fbuild-errors.md)\n\n### \"Authentication times out\"\n→ [Windows Message Loop](troubleshooting\u002Fwindows-message-loop.md)\n\n### \"Callbacks never fire\"\n→ [Windows Message Loop](troubleshooting\u002Fwindows-message-loop.md)\n\n### \"Abstract class error\"\n→ [Interface Methods](references\u002Finterface-methods.md)\n\n### \"How do I implement [feature]?\"\n→ [SDK Architecture Pattern](concepts\u002Fsdk-architecture-pattern.md)\n\n### \"How do I join a meeting?\"\n→ [Authentication Pattern](examples\u002Fauthentication-pattern.md)\n\n### \"How do I capture video?\"\n→ [Raw Video Capture](examples\u002Fraw-video-capture.md)\n\n### \"What error code means what?\"\n→ [Common Issues](troubleshooting\u002Fcommon-issues.md) - Comprehensive error code tables (SDKERR, AUTHRET, Login, BO, Phone, OBF)\n\n### \"How do I use breakout rooms?\"\n→ [Breakout Rooms Guide](examples\u002Fbreakout-rooms.md)\n\n### \"How does the SDK work?\"\n→ [SDK Architecture Pattern](concepts\u002Fsdk-architecture-pattern.md)\n\n### \"How do I navigate to a specific controller\u002Ffeature?\"\n→ [Singleton Hierarchy](concepts\u002Fsingleton-hierarchy.md)\n\n### \"How do I send\u002Freceive chat messages?\"\n→ [Chat Guide](examples\u002Fchat.md)\n\n### \"How do I use live transcription?\"\n→ [Captions & Transcription Guide](examples\u002Fcaptions-transcription.md)\n\n### \"How do I record locally?\"\n→ [Local Recording Guide](examples\u002Flocal-recording.md)\n\n### \"How do I capture screen share?\"\n→ [Share Raw Data Capture](examples\u002Fshare-raw-data-capture.md)\n\n---\n\n## 📝 Document Version\n\nAll documents are based on **Zoom Windows Meeting SDK v6.7.2.26830**.\n\nDifferent SDK versions may have:\n- Different required callback methods\n- Different error codes\n- Different API behavior\n\nIf using a different version, use `grep \"= 0\" SDK\u002Fx64\u002Fh\u002F*.h` to verify required methods.\n\n---\n\nRemember: The [SDK Architecture Pattern](concepts\u002Fsdk-architecture-pattern.md) is the fastest way to understand how the Windows Meeting SDK fits together. Read it first if you are debugging custom UI or event flow issues.\n\n## Operations\n\n- [RUNBOOK.md](RUNBOOK.md) - 5-minute preflight and debugging checklist.\n",{"data":38,"body":46},{"name":4,"description":6,"user-invocable":39,"triggers":40},false,[41,42,43,44,45],"meeting sdk windows","windows meeting sdk","windows meeting bot","c++ meeting sdk windows","custom ui meeting windows",{"type":47,"children":48},"root",[49,57,63,70,79,127,135,183,191,267,273,301,326,332,345,359,384,419,431,466,526,538,596,606,692,698,710,753,759,771,823,833,846,852,858,873,887,893,903,908,933,939,1021,1027,1035,1044,1052,1061,1069,1078,1088,1102,1108,1119,1284,1290,1308,1314,1323,1333,1405,1415,1421,1466,1472,1482,1552,1562,1568,1749,1755,2031,2039,2292,2306,2312,2673,2681,3038,3052,3058,3403,3411,3729,3743,3749,3901,3907,3915,4215,4233,4242,4265,4278,4284,4454,4468,4474,4486,4494,4631,4644,4650,4832,4838,4844,4866,4872,4899,4905,4950,4956,5010,5016,5045,5051,5108,5114,5119,5125,5139,5145,5159,5165,5179,5185,5199,5205,5236,5244,5375,5381,5401,5406,5461,5467,5472,5478,5505,5511,5519,5531,5539,5560,5568,5604,5612,5675,5681,5760,5766,5774,5782,5790,5796,5858,5862,5872,5888,5894,5900,5906,5914,6112,6115,6121,6130,6133,6139,6145,6184,6190,6220,6226,6256,6262,6310,6316,6388,6394,6430,6436,6468,6474,6506,6512,6544,6550,6593,6599,6640,6643,6649,6655,6665,6670,6687,6699,6709,6712,6718,6728,6733,6758,6768,6771,6777,6787,6792,6833,6836,6842,6848,6869,6875,6964,6970,7000,7006,7059,7062,7068,7073,7079,7299,7302,7308,7314,7350,7356,7392,7398,7428,7431,7437,7443,7452,7458,7466,7472,7480,7486,7494,7506,7514,7520,7528,7534,7542,7548,7558,7564,7572,7578,7586,7592,7600,7606,7614,7620,7628,7634,7642,7648,7656,7659,7665,7677,7682,7700,7713,7716,7727,7733,7746],{"type":50,"tag":51,"props":52,"children":53},"element","h1",{"id":4},[54],{"type":55,"value":56},"text","Zoom Meeting SDK (Windows)",{"type":50,"tag":58,"props":59,"children":60},"p",{},[61],{"type":55,"value":62},"Embed Zoom meeting capabilities into Windows desktop applications for native C++ integrations and headless bots.",{"type":50,"tag":64,"props":65,"children":67},"h2",{"id":66},"new-to-zoom-sdk-start-here",[68],{"type":55,"value":69},"New to Zoom SDK? Start Here!",{"type":50,"tag":58,"props":71,"children":72},{},[73],{"type":50,"tag":74,"props":75,"children":76},"strong",{},[77],{"type":55,"value":78},"The fastest way to master the SDK:",{"type":50,"tag":80,"props":81,"children":82},"ol",{},[83,99,113],{"type":50,"tag":84,"props":85,"children":86},"li",{},[87,97],{"type":50,"tag":74,"props":88,"children":89},{},[90],{"type":50,"tag":91,"props":92,"children":94},"a",{"href":93},"concepts\u002Fsdk-architecture-pattern.md",[95],{"type":55,"value":96},"SDK Architecture Pattern",{"type":55,"value":98}," - Learn the universal pattern that works for ALL 35+ features",{"type":50,"tag":84,"props":100,"children":101},{},[102,111],{"type":50,"tag":74,"props":103,"children":104},{},[105],{"type":50,"tag":91,"props":106,"children":108},{"href":107},"examples\u002Fauthentication-pattern.md",[109],{"type":55,"value":110},"Authentication Pattern",{"type":55,"value":112}," - Get a working bot joining meetings",{"type":50,"tag":84,"props":114,"children":115},{},[116,125],{"type":50,"tag":74,"props":117,"children":118},{},[119],{"type":50,"tag":91,"props":120,"children":122},{"href":121},"troubleshooting\u002Fwindows-message-loop.md",[123],{"type":55,"value":124},"Windows Message Loop",{"type":55,"value":126}," - Fix the #1 reason callbacks don't fire",{"type":50,"tag":58,"props":128,"children":129},{},[130],{"type":50,"tag":74,"props":131,"children":132},{},[133],{"type":55,"value":134},"Building a Custom UI?",{"type":50,"tag":136,"props":137,"children":138},"ul",{},[139,150,161,172],{"type":50,"tag":84,"props":140,"children":141},{},[142,148],{"type":50,"tag":91,"props":143,"children":145},{"href":144},"concepts\u002Fcustom-ui-architecture.md",[146],{"type":55,"value":147},"Custom UI Architecture",{"type":55,"value":149}," - How SDK rendering actually works (child HWNDs, D3D, etc.)",{"type":50,"tag":84,"props":151,"children":152},{},[153,159],{"type":50,"tag":91,"props":154,"children":156},{"href":155},"examples\u002Fcustom-ui-video-rendering.md",[157],{"type":55,"value":158},"Custom UI Video Rendering Example",{"type":55,"value":160}," - Complete working code",{"type":50,"tag":84,"props":162,"children":163},{},[164,170],{"type":50,"tag":91,"props":165,"children":167},{"href":166},"concepts\u002Fcustom-ui-vs-raw-data.md",[168],{"type":55,"value":169},"SDK-Rendered vs Self-Rendered",{"type":55,"value":171}," - Choose the right approach",{"type":50,"tag":84,"props":173,"children":174},{},[175,181],{"type":50,"tag":91,"props":176,"children":178},{"href":177},"references\u002Finterface-methods.md",[179],{"type":55,"value":180},"Custom UI Interface Methods",{"type":55,"value":182}," - All 13 required virtual methods",{"type":50,"tag":58,"props":184,"children":185},{},[186],{"type":50,"tag":74,"props":187,"children":188},{},[189],{"type":55,"value":190},"Having issues?",{"type":50,"tag":136,"props":192,"children":193},{},[194,205,214,225,236,247,257],{"type":50,"tag":84,"props":195,"children":196},{},[197,199],{"type":55,"value":198},"Build errors → ",{"type":50,"tag":91,"props":200,"children":202},{"href":201},"troubleshooting\u002Fbuild-errors.md",[203],{"type":55,"value":204},"Build Errors Guide",{"type":50,"tag":84,"props":206,"children":207},{},[208,210],{"type":55,"value":209},"Callbacks not firing → ",{"type":50,"tag":91,"props":211,"children":212},{"href":121},[213],{"type":55,"value":124},{"type":50,"tag":84,"props":215,"children":216},{},[217,219],{"type":55,"value":218},"Quick diagnostics → ",{"type":50,"tag":91,"props":220,"children":222},{"href":221},"troubleshooting\u002Fcommon-issues.md",[223],{"type":55,"value":224},"Common Issues",{"type":50,"tag":84,"props":226,"children":227},{},[228,230],{"type":55,"value":229},"Performance \u002F service quality → ",{"type":50,"tag":91,"props":231,"children":233},{"href":232},"examples\u002Fservice-quality.md",[234],{"type":55,"value":235},"service-quality.md",{"type":50,"tag":84,"props":237,"children":238},{},[239,241],{"type":55,"value":240},"Deployment notes → ",{"type":50,"tag":91,"props":242,"children":244},{"href":243},"references\u002Fdeployment.md",[245],{"type":55,"value":246},"deployment.md",{"type":50,"tag":84,"props":248,"children":249},{},[250,252],{"type":55,"value":251},"MSBuild from git bash → ",{"type":50,"tag":91,"props":253,"children":255},{"href":254},"troubleshooting\u002Fbuild-errors.md#msbuild-command-pattern",[256],{"type":55,"value":204},{"type":50,"tag":84,"props":258,"children":259},{},[260,262],{"type":55,"value":261},"Complete navigation → ",{"type":50,"tag":91,"props":263,"children":265},{"href":264},"SKILL.md",[266],{"type":55,"value":264},{"type":50,"tag":64,"props":268,"children":270},{"id":269},"prerequisites",[271],{"type":55,"value":272},"Prerequisites",{"type":50,"tag":136,"props":274,"children":275},{},[276,281,286,291,296],{"type":50,"tag":84,"props":277,"children":278},{},[279],{"type":55,"value":280},"Zoom app with Meeting SDK credentials (Client ID & Secret)",{"type":50,"tag":84,"props":282,"children":283},{},[284],{"type":55,"value":285},"Visual Studio 2019\u002F2022 or later",{"type":50,"tag":84,"props":287,"children":288},{},[289],{"type":55,"value":290},"Windows 10 or later",{"type":50,"tag":84,"props":292,"children":293},{},[294],{"type":55,"value":295},"C++ development environment",{"type":50,"tag":84,"props":297,"children":298},{},[299],{"type":55,"value":300},"vcpkg for dependency management",{"type":50,"tag":302,"props":303,"children":304},"blockquote",{},[305],{"type":50,"tag":58,"props":306,"children":307},{},[308,313,315,324],{"type":50,"tag":74,"props":309,"children":310},{},[311],{"type":55,"value":312},"Need help with authentication?",{"type":55,"value":314}," See the ",{"type":50,"tag":74,"props":316,"children":317},{},[318],{"type":50,"tag":91,"props":319,"children":321},{"href":320},"..\u002F..\u002Foauth\u002FSKILL.md",[322],{"type":55,"value":323},"zoom-oauth",{"type":55,"value":325}," skill for JWT token generation.",{"type":50,"tag":64,"props":327,"children":329},{"id":328},"project-preferences-learnings",[330],{"type":55,"value":331},"Project Preferences & Learnings",{"type":50,"tag":302,"props":333,"children":334},{},[335],{"type":50,"tag":58,"props":336,"children":337},{},[338,343],{"type":50,"tag":74,"props":339,"children":340},{},[341],{"type":55,"value":342},"IMPORTANT",{"type":55,"value":344},": These are hard-won preferences from real project experience. Follow these when creating new projects.",{"type":50,"tag":346,"props":347,"children":349},"h3",{"id":348},"do-not-use-cmake-use-native-visual-studio-vcxproj",[350,352],{"type":55,"value":351},"Do NOT use CMake — Use native Visual Studio ",{"type":50,"tag":353,"props":354,"children":356},"code",{"className":355},[],[357],{"type":55,"value":358},".vcxproj",{"type":50,"tag":58,"props":360,"children":361},{},[362,382],{"type":50,"tag":74,"props":363,"children":364},{},[365,367,373,375,380],{"type":55,"value":366},"Always create a native Visual Studio ",{"type":50,"tag":353,"props":368,"children":370},{"className":369},[],[371],{"type":55,"value":372},".sln",{"type":55,"value":374}," + ",{"type":50,"tag":353,"props":376,"children":378},{"className":377},[],[379],{"type":55,"value":358},{"type":55,"value":381}," project",{"type":55,"value":383},", not a CMake project. Reasons:",{"type":50,"tag":136,"props":385,"children":386},{},[387,392,404,409,414],{"type":50,"tag":84,"props":388,"children":389},{},[390],{"type":55,"value":391},"More standard and familiar for Windows C++ developers",{"type":50,"tag":84,"props":393,"children":394},{},[395,397,402],{"type":55,"value":396},"Developers can double-click the ",{"type":50,"tag":353,"props":398,"children":400},{"className":399},[],[401],{"type":55,"value":372},{"type":55,"value":403}," to open in Visual Studio immediately",{"type":50,"tag":84,"props":405,"children":406},{},[407],{"type":55,"value":408},"Project settings (include dirs, lib dirs, preprocessor defines) are easier to see and edit in the VS Property Pages UI",{"type":50,"tag":84,"props":410,"children":411},{},[412],{"type":55,"value":413},"No extra CMake tooling or configuration step required",{"type":50,"tag":84,"props":415,"children":416},{},[417],{"type":55,"value":418},"Friendlier and easier for developers to understand and maintain",{"type":50,"tag":346,"props":420,"children":422},{"id":421},"configjson-must-be-visible-in-solution-explorer",[423,429],{"type":50,"tag":353,"props":424,"children":426},{"className":425},[],[427],{"type":55,"value":428},"config.json",{"type":55,"value":430}," must be visible in Solution Explorer",{"type":50,"tag":58,"props":432,"children":433},{},[434,436,441,443,449,451,457,458,464],{"type":55,"value":435},"The ",{"type":50,"tag":353,"props":437,"children":439},{"className":438},[],[440],{"type":55,"value":428},{"type":55,"value":442}," file (containing ",{"type":50,"tag":353,"props":444,"children":446},{"className":445},[],[447],{"type":55,"value":448},"sdk_jwt",{"type":55,"value":450},", ",{"type":50,"tag":353,"props":452,"children":454},{"className":453},[],[455],{"type":55,"value":456},"meeting_number",{"type":55,"value":450},{"type":50,"tag":353,"props":459,"children":461},{"className":460},[],[462],{"type":55,"value":463},"passcode",{"type":55,"value":465},") must be:",{"type":50,"tag":80,"props":467,"children":468},{},[469,498,516],{"type":50,"tag":84,"props":470,"children":471},{},[472,482,484,490,492],{"type":50,"tag":74,"props":473,"children":474},{},[475,477],{"type":55,"value":476},"Included in the ",{"type":50,"tag":353,"props":478,"children":480},{"className":479},[],[481],{"type":55,"value":358},{"type":55,"value":483}," as a ",{"type":50,"tag":353,"props":485,"children":487},{"className":486},[],[488],{"type":55,"value":489},"\u003CNone>",{"type":55,"value":491}," item with ",{"type":50,"tag":353,"props":493,"children":495},{"className":494},[],[496],{"type":55,"value":497},"\u003CCopyToOutputDirectory>PreserveNewest\u003C\u002FCopyToOutputDirectory>",{"type":50,"tag":84,"props":499,"children":500},{},[501,506,508,514],{"type":50,"tag":74,"props":502,"children":503},{},[504],{"type":55,"value":505},"Placed in a \"Config\" filter",{"type":55,"value":507}," in the ",{"type":50,"tag":353,"props":509,"children":511},{"className":510},[],[512],{"type":55,"value":513},".vcxproj.filters",{"type":55,"value":515}," file so it appears under a \"Config\" folder in Solution Explorer",{"type":50,"tag":84,"props":517,"children":518},{},[519,524],{"type":50,"tag":74,"props":520,"children":521},{},[522],{"type":55,"value":523},"Easily editable",{"type":55,"value":525}," by developers directly from Solution Explorer — they should never have to hunt for it in File Explorer",{"type":50,"tag":58,"props":527,"children":528},{},[529,531,536],{"type":55,"value":530},"Example ",{"type":50,"tag":353,"props":532,"children":534},{"className":533},[],[535],{"type":55,"value":358},{"type":55,"value":537}," entry:",{"type":50,"tag":539,"props":540,"children":545},"pre",{"className":541,"code":542,"language":543,"meta":544,"style":544},"language-xml shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","\u003CItemGroup>\n  \u003CNone Include=\"config.json\">\n    \u003CCopyToOutputDirectory>PreserveNewest\u003C\u002FCopyToOutputDirectory>\n  \u003C\u002FNone>\n\u003C\u002FItemGroup>\n","xml","",[546],{"type":50,"tag":353,"props":547,"children":548},{"__ignoreMap":544},[549,560,569,578,587],{"type":50,"tag":550,"props":551,"children":554},"span",{"class":552,"line":553},"line",1,[555],{"type":50,"tag":550,"props":556,"children":557},{},[558],{"type":55,"value":559},"\u003CItemGroup>\n",{"type":50,"tag":550,"props":561,"children":563},{"class":552,"line":562},2,[564],{"type":50,"tag":550,"props":565,"children":566},{},[567],{"type":55,"value":568},"  \u003CNone Include=\"config.json\">\n",{"type":50,"tag":550,"props":570,"children":572},{"class":552,"line":571},3,[573],{"type":50,"tag":550,"props":574,"children":575},{},[576],{"type":55,"value":577},"    \u003CCopyToOutputDirectory>PreserveNewest\u003C\u002FCopyToOutputDirectory>\n",{"type":50,"tag":550,"props":579,"children":581},{"class":552,"line":580},4,[582],{"type":50,"tag":550,"props":583,"children":584},{},[585],{"type":55,"value":586},"  \u003C\u002FNone>\n",{"type":50,"tag":550,"props":588,"children":590},{"class":552,"line":589},5,[591],{"type":50,"tag":550,"props":592,"children":593},{},[594],{"type":55,"value":595},"\u003C\u002FItemGroup>\n",{"type":50,"tag":58,"props":597,"children":598},{},[599,600,605],{"type":55,"value":530},{"type":50,"tag":353,"props":601,"children":603},{"className":602},[],[604],{"type":55,"value":513},{"type":55,"value":537},{"type":50,"tag":539,"props":607,"children":609},{"className":541,"code":608,"language":543,"meta":544,"style":544},"\u003CItemGroup>\n  \u003CFilter Include=\"Config\">\n    \u003CUniqueIdentifier>{GUID-HERE}\u003C\u002FUniqueIdentifier>\n  \u003C\u002FFilter>\n\u003C\u002FItemGroup>\n\u003CItemGroup>\n  \u003CNone Include=\"config.json\">\n    \u003CFilter>Config\u003C\u002FFilter>\n  \u003C\u002FNone>\n\u003C\u002FItemGroup>\n",[610],{"type":50,"tag":353,"props":611,"children":612},{"__ignoreMap":544},[613,620,628,636,644,651,659,667,676,684],{"type":50,"tag":550,"props":614,"children":615},{"class":552,"line":553},[616],{"type":50,"tag":550,"props":617,"children":618},{},[619],{"type":55,"value":559},{"type":50,"tag":550,"props":621,"children":622},{"class":552,"line":562},[623],{"type":50,"tag":550,"props":624,"children":625},{},[626],{"type":55,"value":627},"  \u003CFilter Include=\"Config\">\n",{"type":50,"tag":550,"props":629,"children":630},{"class":552,"line":571},[631],{"type":50,"tag":550,"props":632,"children":633},{},[634],{"type":55,"value":635},"    \u003CUniqueIdentifier>{GUID-HERE}\u003C\u002FUniqueIdentifier>\n",{"type":50,"tag":550,"props":637,"children":638},{"class":552,"line":580},[639],{"type":50,"tag":550,"props":640,"children":641},{},[642],{"type":55,"value":643},"  \u003C\u002FFilter>\n",{"type":50,"tag":550,"props":645,"children":646},{"class":552,"line":589},[647],{"type":50,"tag":550,"props":648,"children":649},{},[650],{"type":55,"value":595},{"type":50,"tag":550,"props":652,"children":654},{"class":552,"line":653},6,[655],{"type":50,"tag":550,"props":656,"children":657},{},[658],{"type":55,"value":559},{"type":50,"tag":550,"props":660,"children":662},{"class":552,"line":661},7,[663],{"type":50,"tag":550,"props":664,"children":665},{},[666],{"type":55,"value":568},{"type":50,"tag":550,"props":668,"children":670},{"class":552,"line":669},8,[671],{"type":50,"tag":550,"props":672,"children":673},{},[674],{"type":55,"value":675},"    \u003CFilter>Config\u003C\u002FFilter>\n",{"type":50,"tag":550,"props":677,"children":679},{"class":552,"line":678},9,[680],{"type":50,"tag":550,"props":681,"children":682},{},[683],{"type":55,"value":586},{"type":50,"tag":550,"props":685,"children":687},{"class":552,"line":686},10,[688],{"type":50,"tag":550,"props":689,"children":690},{},[691],{"type":55,"value":595},{"type":50,"tag":64,"props":693,"children":695},{"id":694},"overview",[696],{"type":55,"value":697},"Overview",{"type":50,"tag":58,"props":699,"children":700},{},[701,703,708],{"type":55,"value":702},"The Windows SDK is a ",{"type":50,"tag":74,"props":704,"children":705},{},[706],{"type":55,"value":707},"C++ native SDK",{"type":55,"value":709}," designed for:",{"type":50,"tag":136,"props":711,"children":712},{},[713,723,733,743],{"type":50,"tag":84,"props":714,"children":715},{},[716,721],{"type":50,"tag":74,"props":717,"children":718},{},[719],{"type":55,"value":720},"Desktop applications",{"type":55,"value":722}," - Native Windows apps with full UI control",{"type":50,"tag":84,"props":724,"children":725},{},[726,731],{"type":50,"tag":74,"props":727,"children":728},{},[729],{"type":55,"value":730},"Headless bots",{"type":55,"value":732}," - Join meetings without UI",{"type":50,"tag":84,"props":734,"children":735},{},[736,741],{"type":50,"tag":74,"props":737,"children":738},{},[739],{"type":55,"value":740},"Raw media access",{"type":55,"value":742}," - Capture\u002Fsend audio\u002Fvideo streams",{"type":50,"tag":84,"props":744,"children":745},{},[746,751],{"type":50,"tag":74,"props":747,"children":748},{},[749],{"type":55,"value":750},"Local recording",{"type":55,"value":752}," - Record meetings locally or to cloud",{"type":50,"tag":346,"props":754,"children":756},{"id":755},"key-architectural-insight",[757],{"type":55,"value":758},"Key Architectural Insight",{"type":50,"tag":58,"props":760,"children":761},{},[762,764,769],{"type":55,"value":763},"The SDK follows a ",{"type":50,"tag":74,"props":765,"children":766},{},[767],{"type":55,"value":768},"universal 3-step pattern",{"type":55,"value":770}," for every feature:",{"type":50,"tag":80,"props":772,"children":773},{},[774,790,806],{"type":50,"tag":84,"props":775,"children":776},{},[777,782,784],{"type":50,"tag":74,"props":778,"children":779},{},[780],{"type":55,"value":781},"Get controller",{"type":55,"value":783}," (singleton): ",{"type":50,"tag":353,"props":785,"children":787},{"className":786},[],[788],{"type":55,"value":789},"meetingService->Get[Feature]Controller()",{"type":50,"tag":84,"props":791,"children":792},{},[793,798,800],{"type":50,"tag":74,"props":794,"children":795},{},[796],{"type":55,"value":797},"Implement event listener",{"type":55,"value":799},": ",{"type":50,"tag":353,"props":801,"children":803},{"className":802},[],[804],{"type":55,"value":805},"class MyListener : public I[Feature]Event { ... }",{"type":50,"tag":84,"props":807,"children":808},{},[809,814,815,821],{"type":50,"tag":74,"props":810,"children":811},{},[812],{"type":55,"value":813},"Register and use",{"type":55,"value":799},{"type":50,"tag":353,"props":816,"children":818},{"className":817},[],[819],{"type":55,"value":820},"controller->SetEvent(listener)",{"type":55,"value":822}," then call methods",{"type":50,"tag":58,"props":824,"children":825},{},[826,831],{"type":50,"tag":74,"props":827,"children":828},{},[829],{"type":55,"value":830},"This works for ALL features",{"type":55,"value":832},": audio, video, chat, recording, participants, screen sharing, breakout rooms, webinars, Q&A, polling, whiteboard, and 20+ more!",{"type":50,"tag":58,"props":834,"children":835},{},[836,838],{"type":55,"value":837},"Learn more: ",{"type":50,"tag":74,"props":839,"children":840},{},[841],{"type":50,"tag":91,"props":842,"children":843},{"href":93},[844],{"type":55,"value":845},"SDK Architecture Pattern Guide",{"type":50,"tag":64,"props":847,"children":849},{"id":848},"quick-start",[850],{"type":55,"value":851},"Quick Start",{"type":50,"tag":346,"props":853,"children":855},{"id":854},"_1-download-windows-sdk",[856],{"type":55,"value":857},"1. Download Windows SDK",{"type":50,"tag":58,"props":859,"children":860},{},[861,863,871],{"type":55,"value":862},"Download from ",{"type":50,"tag":91,"props":864,"children":868},{"href":865,"rel":866},"https:\u002F\u002Fmarketplace.zoom.us\u002F",[867],"nofollow",[869],{"type":55,"value":870},"Zoom Marketplace",{"type":55,"value":872},":",{"type":50,"tag":136,"props":874,"children":875},{},[876],{"type":50,"tag":84,"props":877,"children":878},{},[879,881],{"type":55,"value":880},"Extract ",{"type":50,"tag":353,"props":882,"children":884},{"className":883},[],[885],{"type":55,"value":886},"zoom-meeting-sdk-windows_x86_64-{version}.zip",{"type":50,"tag":346,"props":888,"children":890},{"id":889},"_2-setup-project-structure",[891],{"type":55,"value":892},"2. Setup Project Structure",{"type":50,"tag":539,"props":894,"children":898},{"className":895,"code":897,"language":55},[896],"language-text","your-project\u002F\n  YourApp\u002F\n    SDK\u002F\n      x64\u002F\n        bin\u002F          # DLL files and dependencies\n        h\u002F            # Header files\n        lib\u002F          # sdk.lib\n      x86\u002F\n        bin\u002F\n        h\u002F\n        lib\u002F\n    YourApp.cpp\n    YourApp.vcxproj\n    config.json\n",[899],{"type":50,"tag":353,"props":900,"children":901},{"__ignoreMap":544},[902],{"type":55,"value":897},{"type":50,"tag":58,"props":904,"children":905},{},[906],{"type":55,"value":907},"Copy SDK files:",{"type":50,"tag":539,"props":909,"children":913},{"className":910,"code":911,"language":912,"meta":544,"style":544},"language-cmd shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","xcopy \u002FE \u002FI sdk-package\\x64 your-project\\YourApp\\SDK\\x64\\\nxcopy \u002FE \u002FI sdk-package\\x86 your-project\\YourApp\\SDK\\x86\\\n","cmd",[914],{"type":50,"tag":353,"props":915,"children":916},{"__ignoreMap":544},[917,925],{"type":50,"tag":550,"props":918,"children":919},{"class":552,"line":553},[920],{"type":50,"tag":550,"props":921,"children":922},{},[923],{"type":55,"value":924},"xcopy \u002FE \u002FI sdk-package\\x64 your-project\\YourApp\\SDK\\x64\\\n",{"type":50,"tag":550,"props":926,"children":927},{"class":552,"line":562},[928],{"type":50,"tag":550,"props":929,"children":930},{},[931],{"type":55,"value":932},"xcopy \u002FE \u002FI sdk-package\\x86 your-project\\YourApp\\SDK\\x86\\\n",{"type":50,"tag":346,"props":934,"children":936},{"id":935},"_3-install-dependencies-vcpkg",[937],{"type":55,"value":938},"3. Install Dependencies (vcpkg)",{"type":50,"tag":539,"props":940,"children":944},{"className":941,"code":942,"language":943,"meta":544,"style":544},"language-powershell shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","# Install vcpkg\ngit clone https:\u002F\u002Fgithub.com\u002FMicrosoft\u002Fvcpkg.git C:\\vcpkg\ncd C:\\vcpkg\n.\\bootstrap-vcpkg.bat\n.\\vcpkg integrate install\n\n# Install dependencies\n.\\vcpkg install jsoncpp:x64-windows\n.\\vcpkg install curl:x64-windows\n","powershell",[945],{"type":50,"tag":353,"props":946,"children":947},{"__ignoreMap":544},[948,956,964,972,980,988,997,1005,1013],{"type":50,"tag":550,"props":949,"children":950},{"class":552,"line":553},[951],{"type":50,"tag":550,"props":952,"children":953},{},[954],{"type":55,"value":955},"# Install vcpkg\n",{"type":50,"tag":550,"props":957,"children":958},{"class":552,"line":562},[959],{"type":50,"tag":550,"props":960,"children":961},{},[962],{"type":55,"value":963},"git clone https:\u002F\u002Fgithub.com\u002FMicrosoft\u002Fvcpkg.git C:\\vcpkg\n",{"type":50,"tag":550,"props":965,"children":966},{"class":552,"line":571},[967],{"type":50,"tag":550,"props":968,"children":969},{},[970],{"type":55,"value":971},"cd C:\\vcpkg\n",{"type":50,"tag":550,"props":973,"children":974},{"class":552,"line":580},[975],{"type":50,"tag":550,"props":976,"children":977},{},[978],{"type":55,"value":979},".\\bootstrap-vcpkg.bat\n",{"type":50,"tag":550,"props":981,"children":982},{"class":552,"line":589},[983],{"type":50,"tag":550,"props":984,"children":985},{},[986],{"type":55,"value":987},".\\vcpkg integrate install\n",{"type":50,"tag":550,"props":989,"children":990},{"class":552,"line":653},[991],{"type":50,"tag":550,"props":992,"children":994},{"emptyLinePlaceholder":993},true,[995],{"type":55,"value":996},"\n",{"type":50,"tag":550,"props":998,"children":999},{"class":552,"line":661},[1000],{"type":50,"tag":550,"props":1001,"children":1002},{},[1003],{"type":55,"value":1004},"# Install dependencies\n",{"type":50,"tag":550,"props":1006,"children":1007},{"class":552,"line":669},[1008],{"type":50,"tag":550,"props":1009,"children":1010},{},[1011],{"type":55,"value":1012},".\\vcpkg install jsoncpp:x64-windows\n",{"type":50,"tag":550,"props":1014,"children":1015},{"class":552,"line":678},[1016],{"type":50,"tag":550,"props":1017,"children":1018},{},[1019],{"type":55,"value":1020},".\\vcpkg install curl:x64-windows\n",{"type":50,"tag":346,"props":1022,"children":1024},{"id":1023},"_4-configure-visual-studio-project",[1025],{"type":55,"value":1026},"4. Configure Visual Studio Project",{"type":50,"tag":58,"props":1028,"children":1029},{},[1030],{"type":50,"tag":74,"props":1031,"children":1032},{},[1033],{"type":55,"value":1034},"Project Properties → C\u002FC++ → General → Additional Include Directories:",{"type":50,"tag":539,"props":1036,"children":1039},{"className":1037,"code":1038,"language":55},[896],"$(SolutionDir)SDK\\$(PlatformTarget)\\h\nC:\\vcpkg\\packages\\jsoncpp_x64-windows\\include\nC:\\vcpkg\\packages\\curl_x64-windows\\include\n",[1040],{"type":50,"tag":353,"props":1041,"children":1042},{"__ignoreMap":544},[1043],{"type":55,"value":1038},{"type":50,"tag":58,"props":1045,"children":1046},{},[1047],{"type":50,"tag":74,"props":1048,"children":1049},{},[1050],{"type":55,"value":1051},"Project Properties → Linker → General → Additional Library Directories:",{"type":50,"tag":539,"props":1053,"children":1056},{"className":1054,"code":1055,"language":55},[896],"$(SolutionDir)SDK\\$(PlatformTarget)\\lib\n",[1057],{"type":50,"tag":353,"props":1058,"children":1059},{"__ignoreMap":544},[1060],{"type":55,"value":1055},{"type":50,"tag":58,"props":1062,"children":1063},{},[1064],{"type":50,"tag":74,"props":1065,"children":1066},{},[1067],{"type":55,"value":1068},"Project Properties → Linker → Input → Additional Dependencies:",{"type":50,"tag":539,"props":1070,"children":1073},{"className":1071,"code":1072,"language":55},[896],"sdk.lib\n",[1074],{"type":50,"tag":353,"props":1075,"children":1076},{"__ignoreMap":544},[1077],{"type":55,"value":1072},{"type":50,"tag":58,"props":1079,"children":1080},{},[1081,1086],{"type":50,"tag":74,"props":1082,"children":1083},{},[1084],{"type":55,"value":1085},"Post-Build Event",{"type":55,"value":1087}," (Copy DLLs to output):",{"type":50,"tag":539,"props":1089,"children":1091},{"className":910,"code":1090,"language":912,"meta":544,"style":544},"xcopy \u002FY \u002FD \"$(SolutionDir)SDK\\$(PlatformTarget)\\bin\\*.*\" \"$(OutDir)\"\n",[1092],{"type":50,"tag":353,"props":1093,"children":1094},{"__ignoreMap":544},[1095],{"type":50,"tag":550,"props":1096,"children":1097},{"class":552,"line":553},[1098],{"type":50,"tag":550,"props":1099,"children":1100},{},[1101],{"type":55,"value":1090},{"type":50,"tag":346,"props":1103,"children":1105},{"id":1104},"_5-configure-credentials",[1106],{"type":55,"value":1107},"5. Configure Credentials",{"type":50,"tag":58,"props":1109,"children":1110},{},[1111,1113,1118],{"type":55,"value":1112},"Create ",{"type":50,"tag":353,"props":1114,"children":1116},{"className":1115},[],[1117],{"type":55,"value":428},{"type":55,"value":872},{"type":50,"tag":539,"props":1120,"children":1124},{"className":1121,"code":1122,"language":1123,"meta":544,"style":544},"language-json shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","{\n  \"sdk_jwt\": \"YOUR_JWT_TOKEN\",\n  \"meeting_number\": \"1234567890\",\n  \"passcode\": \"password123\",\n  \"zak\": \"\"\n}\n","json",[1125],{"type":50,"tag":353,"props":1126,"children":1127},{"__ignoreMap":544},[1128,1137,1179,1215,1251,1276],{"type":50,"tag":550,"props":1129,"children":1130},{"class":552,"line":553},[1131],{"type":50,"tag":550,"props":1132,"children":1134},{"style":1133},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[1135],{"type":55,"value":1136},"{\n",{"type":50,"tag":550,"props":1138,"children":1139},{"class":552,"line":562},[1140,1145,1150,1155,1159,1164,1170,1174],{"type":50,"tag":550,"props":1141,"children":1142},{"style":1133},[1143],{"type":55,"value":1144},"  \"",{"type":50,"tag":550,"props":1146,"children":1148},{"style":1147},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[1149],{"type":55,"value":448},{"type":50,"tag":550,"props":1151,"children":1152},{"style":1133},[1153],{"type":55,"value":1154},"\"",{"type":50,"tag":550,"props":1156,"children":1157},{"style":1133},[1158],{"type":55,"value":872},{"type":50,"tag":550,"props":1160,"children":1161},{"style":1133},[1162],{"type":55,"value":1163}," \"",{"type":50,"tag":550,"props":1165,"children":1167},{"style":1166},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[1168],{"type":55,"value":1169},"YOUR_JWT_TOKEN",{"type":50,"tag":550,"props":1171,"children":1172},{"style":1133},[1173],{"type":55,"value":1154},{"type":50,"tag":550,"props":1175,"children":1176},{"style":1133},[1177],{"type":55,"value":1178},",\n",{"type":50,"tag":550,"props":1180,"children":1181},{"class":552,"line":571},[1182,1186,1190,1194,1198,1202,1207,1211],{"type":50,"tag":550,"props":1183,"children":1184},{"style":1133},[1185],{"type":55,"value":1144},{"type":50,"tag":550,"props":1187,"children":1188},{"style":1147},[1189],{"type":55,"value":456},{"type":50,"tag":550,"props":1191,"children":1192},{"style":1133},[1193],{"type":55,"value":1154},{"type":50,"tag":550,"props":1195,"children":1196},{"style":1133},[1197],{"type":55,"value":872},{"type":50,"tag":550,"props":1199,"children":1200},{"style":1133},[1201],{"type":55,"value":1163},{"type":50,"tag":550,"props":1203,"children":1204},{"style":1166},[1205],{"type":55,"value":1206},"1234567890",{"type":50,"tag":550,"props":1208,"children":1209},{"style":1133},[1210],{"type":55,"value":1154},{"type":50,"tag":550,"props":1212,"children":1213},{"style":1133},[1214],{"type":55,"value":1178},{"type":50,"tag":550,"props":1216,"children":1217},{"class":552,"line":580},[1218,1222,1226,1230,1234,1238,1243,1247],{"type":50,"tag":550,"props":1219,"children":1220},{"style":1133},[1221],{"type":55,"value":1144},{"type":50,"tag":550,"props":1223,"children":1224},{"style":1147},[1225],{"type":55,"value":463},{"type":50,"tag":550,"props":1227,"children":1228},{"style":1133},[1229],{"type":55,"value":1154},{"type":50,"tag":550,"props":1231,"children":1232},{"style":1133},[1233],{"type":55,"value":872},{"type":50,"tag":550,"props":1235,"children":1236},{"style":1133},[1237],{"type":55,"value":1163},{"type":50,"tag":550,"props":1239,"children":1240},{"style":1166},[1241],{"type":55,"value":1242},"password123",{"type":50,"tag":550,"props":1244,"children":1245},{"style":1133},[1246],{"type":55,"value":1154},{"type":50,"tag":550,"props":1248,"children":1249},{"style":1133},[1250],{"type":55,"value":1178},{"type":50,"tag":550,"props":1252,"children":1253},{"class":552,"line":589},[1254,1258,1263,1267,1271],{"type":50,"tag":550,"props":1255,"children":1256},{"style":1133},[1257],{"type":55,"value":1144},{"type":50,"tag":550,"props":1259,"children":1260},{"style":1147},[1261],{"type":55,"value":1262},"zak",{"type":50,"tag":550,"props":1264,"children":1265},{"style":1133},[1266],{"type":55,"value":1154},{"type":50,"tag":550,"props":1268,"children":1269},{"style":1133},[1270],{"type":55,"value":872},{"type":50,"tag":550,"props":1272,"children":1273},{"style":1133},[1274],{"type":55,"value":1275}," \"\"\n",{"type":50,"tag":550,"props":1277,"children":1278},{"class":552,"line":653},[1279],{"type":50,"tag":550,"props":1280,"children":1281},{"style":1133},[1282],{"type":55,"value":1283},"}\n",{"type":50,"tag":346,"props":1285,"children":1287},{"id":1286},"_6-build-run",[1288],{"type":55,"value":1289},"6. Build & Run",{"type":50,"tag":136,"props":1291,"children":1292},{},[1293,1298,1303],{"type":50,"tag":84,"props":1294,"children":1295},{},[1296],{"type":55,"value":1297},"Open solution in Visual Studio",{"type":50,"tag":84,"props":1299,"children":1300},{},[1301],{"type":55,"value":1302},"Select x64 or x86 configuration",{"type":50,"tag":84,"props":1304,"children":1305},{},[1306],{"type":55,"value":1307},"Press F5 to build and run",{"type":50,"tag":64,"props":1309,"children":1311},{"id":1310},"core-workflow",[1312],{"type":55,"value":1313},"Core Workflow",{"type":50,"tag":539,"props":1315,"children":1318},{"className":1316,"code":1317,"language":55},[896],"┌─────────────┐    ┌─────────────┐    ┌─────────────┐    ┌─────────────┐\n│  InitSDK    │───►│  AuthSDK    │───►│ JoinMeeting │───►│ Raw Data    │\n│             │    │  (JWT)      │    │             │    │ Subscribe   │\n└─────────────┘    └─────────────┘    └─────────────┘    └─────────────┘\n                         │                   │\n                         ▼                   ▼\n                   OnAuthComplete      onInMeeting\n                     callback           callback\n",[1319],{"type":50,"tag":353,"props":1320,"children":1321},{"__ignoreMap":544},[1322],{"type":55,"value":1317},{"type":50,"tag":58,"props":1324,"children":1325},{},[1326,1331],{"type":50,"tag":74,"props":1327,"children":1328},{},[1329],{"type":55,"value":1330},"⚠️ CRITICAL",{"type":55,"value":1332},": Add Windows message loop or callbacks won't fire!",{"type":50,"tag":539,"props":1334,"children":1338},{"className":1335,"code":1336,"language":1337,"meta":544,"style":544},"language-cpp shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","while (!done) {\n    MSG msg;\n    while (PeekMessage(&msg, NULL, 0, 0, PM_REMOVE)) {\n        TranslateMessage(&msg);\n        DispatchMessage(&msg);\n    }\n    std::this_thread::sleep_for(std::chrono::milliseconds(100));\n}\n","cpp",[1339],{"type":50,"tag":353,"props":1340,"children":1341},{"__ignoreMap":544},[1342,1350,1358,1366,1374,1382,1390,1398],{"type":50,"tag":550,"props":1343,"children":1344},{"class":552,"line":553},[1345],{"type":50,"tag":550,"props":1346,"children":1347},{},[1348],{"type":55,"value":1349},"while (!done) {\n",{"type":50,"tag":550,"props":1351,"children":1352},{"class":552,"line":562},[1353],{"type":50,"tag":550,"props":1354,"children":1355},{},[1356],{"type":55,"value":1357},"    MSG msg;\n",{"type":50,"tag":550,"props":1359,"children":1360},{"class":552,"line":571},[1361],{"type":50,"tag":550,"props":1362,"children":1363},{},[1364],{"type":55,"value":1365},"    while (PeekMessage(&msg, NULL, 0, 0, PM_REMOVE)) {\n",{"type":50,"tag":550,"props":1367,"children":1368},{"class":552,"line":580},[1369],{"type":50,"tag":550,"props":1370,"children":1371},{},[1372],{"type":55,"value":1373},"        TranslateMessage(&msg);\n",{"type":50,"tag":550,"props":1375,"children":1376},{"class":552,"line":589},[1377],{"type":50,"tag":550,"props":1378,"children":1379},{},[1380],{"type":55,"value":1381},"        DispatchMessage(&msg);\n",{"type":50,"tag":550,"props":1383,"children":1384},{"class":552,"line":653},[1385],{"type":50,"tag":550,"props":1386,"children":1387},{},[1388],{"type":55,"value":1389},"    }\n",{"type":50,"tag":550,"props":1391,"children":1392},{"class":552,"line":661},[1393],{"type":50,"tag":550,"props":1394,"children":1395},{},[1396],{"type":55,"value":1397},"    std::this_thread::sleep_for(std::chrono::milliseconds(100));\n",{"type":50,"tag":550,"props":1399,"children":1400},{"class":552,"line":669},[1401],{"type":50,"tag":550,"props":1402,"children":1403},{},[1404],{"type":55,"value":1283},{"type":50,"tag":58,"props":1406,"children":1407},{},[1408,1410],{"type":55,"value":1409},"See: ",{"type":50,"tag":91,"props":1411,"children":1412},{"href":121},[1413],{"type":55,"value":1414},"Windows Message Loop Guide",{"type":50,"tag":64,"props":1416,"children":1418},{"id":1417},"code-examples",[1419],{"type":55,"value":1420},"Code Examples",{"type":50,"tag":302,"props":1422,"children":1423},{},[1424,1434],{"type":50,"tag":58,"props":1425,"children":1426},{},[1427,1432],{"type":50,"tag":74,"props":1428,"children":1429},{},[1430],{"type":55,"value":1431},"💡 Pro Tip",{"type":55,"value":1433},": These are minimal examples. For complete, tested code see:",{"type":50,"tag":136,"props":1435,"children":1436},{},[1437,1446,1457],{"type":50,"tag":84,"props":1438,"children":1439},{},[1440,1444],{"type":50,"tag":91,"props":1441,"children":1442},{"href":107},[1443],{"type":55,"value":110},{"type":55,"value":1445}," - Full auth workflow",{"type":50,"tag":84,"props":1447,"children":1448},{},[1449,1455],{"type":50,"tag":91,"props":1450,"children":1452},{"href":1451},"examples\u002Fraw-video-capture.md",[1453],{"type":55,"value":1454},"Raw Video Capture",{"type":55,"value":1456}," - Complete video capture",{"type":50,"tag":84,"props":1458,"children":1459},{},[1460,1464],{"type":50,"tag":91,"props":1461,"children":1462},{"href":93},[1463],{"type":55,"value":96},{"type":55,"value":1465}," - Implement any feature",{"type":50,"tag":346,"props":1467,"children":1469},{"id":1468},"important-include-order",[1470],{"type":55,"value":1471},"Important: Include Order",{"type":50,"tag":58,"props":1473,"children":1474},{},[1475,1480],{"type":50,"tag":74,"props":1476,"children":1477},{},[1478],{"type":55,"value":1479},"CRITICAL",{"type":55,"value":1481},": Include headers in this exact order or you'll get build errors:",{"type":50,"tag":539,"props":1483,"children":1485},{"className":1335,"code":1484,"language":1337,"meta":544,"style":544},"#include \u003Cwindows.h>      \u002F\u002F MUST be first\n#include \u003Ccstdint>         \u002F\u002F MUST be second (SDK headers use uint32_t)\n\u002F\u002F ... other standard headers ...\n#include \u003Czoom_sdk.h>\n#include \u003Cmeeting_service_components\u002Fmeeting_audio_interface.h>  \u002F\u002F BEFORE participants!\n#include \u003Cmeeting_service_components\u002Fmeeting_participants_ctrl_interface.h>\n",[1486],{"type":50,"tag":353,"props":1487,"children":1488},{"__ignoreMap":544},[1489,1502,1515,1523,1531,1544],{"type":50,"tag":550,"props":1490,"children":1491},{"class":552,"line":553},[1492,1497],{"type":50,"tag":550,"props":1493,"children":1494},{},[1495],{"type":55,"value":1496},"#include \u003Cwindows.h>",{"type":50,"tag":550,"props":1498,"children":1499},{},[1500],{"type":55,"value":1501},"      \u002F\u002F MUST be first\n",{"type":50,"tag":550,"props":1503,"children":1504},{"class":552,"line":562},[1505,1510],{"type":50,"tag":550,"props":1506,"children":1507},{},[1508],{"type":55,"value":1509},"#include \u003Ccstdint>",{"type":50,"tag":550,"props":1511,"children":1512},{},[1513],{"type":55,"value":1514},"         \u002F\u002F MUST be second (SDK headers use uint32_t)\n",{"type":50,"tag":550,"props":1516,"children":1517},{"class":552,"line":571},[1518],{"type":50,"tag":550,"props":1519,"children":1520},{},[1521],{"type":55,"value":1522},"\u002F\u002F ... other standard headers ...\n",{"type":50,"tag":550,"props":1524,"children":1525},{"class":552,"line":580},[1526],{"type":50,"tag":550,"props":1527,"children":1528},{},[1529],{"type":55,"value":1530},"#include \u003Czoom_sdk.h>\n",{"type":50,"tag":550,"props":1532,"children":1533},{"class":552,"line":589},[1534,1539],{"type":50,"tag":550,"props":1535,"children":1536},{},[1537],{"type":55,"value":1538},"#include \u003Cmeeting_service_components\u002Fmeeting_audio_interface.h>",{"type":50,"tag":550,"props":1540,"children":1541},{},[1542],{"type":55,"value":1543},"  \u002F\u002F BEFORE participants!\n",{"type":50,"tag":550,"props":1545,"children":1546},{"class":552,"line":653},[1547],{"type":50,"tag":550,"props":1548,"children":1549},{},[1550],{"type":55,"value":1551},"#include \u003Cmeeting_service_components\u002Fmeeting_participants_ctrl_interface.h>\n",{"type":50,"tag":58,"props":1553,"children":1554},{},[1555,1556,1560],{"type":55,"value":1409},{"type":50,"tag":91,"props":1557,"children":1558},{"href":201},[1559],{"type":55,"value":204},{"type":55,"value":1561}," for all dependency fixes.",{"type":50,"tag":346,"props":1563,"children":1565},{"id":1564},"_1-initialize-sdk",[1566],{"type":55,"value":1567},"1. Initialize SDK",{"type":50,"tag":539,"props":1569,"children":1571},{"className":1335,"code":1570,"language":1337,"meta":544,"style":544},"#include \u003Cwindows.h>\n#include \u003Ccstdint>\n#include \u003Czoom_sdk.h>\n\nusing namespace ZOOM_SDK_NAMESPACE;\n\nbool InitMeetingSDK() {\n    InitParam initParam;\n    initParam.strWebDomain = L\"https:\u002F\u002Fzoom.us\";\n    initParam.strSupportUrl = L\"https:\u002F\u002Fzoom.us\";\n    initParam.emLanguageID = LANGUAGE_English;\n    initParam.enableLogByDefault = true;\n    initParam.enableGenerateDump = true;\n    \n    SDKError err = InitSDK(initParam);\n    if (err != SDKERR_SUCCESS) {\n        std::wcout \u003C\u003C L\"InitSDK failed: \" \u003C\u003C err \u003C\u003C std::endl;\n        return false;\n    }\n    return true;\n}\n",[1572],{"type":50,"tag":353,"props":1573,"children":1574},{"__ignoreMap":544},[1575,1583,1591,1598,1605,1613,1620,1628,1636,1644,1652,1661,1670,1679,1688,1697,1706,1715,1724,1732,1741],{"type":50,"tag":550,"props":1576,"children":1577},{"class":552,"line":553},[1578],{"type":50,"tag":550,"props":1579,"children":1580},{},[1581],{"type":55,"value":1582},"#include \u003Cwindows.h>\n",{"type":50,"tag":550,"props":1584,"children":1585},{"class":552,"line":562},[1586],{"type":50,"tag":550,"props":1587,"children":1588},{},[1589],{"type":55,"value":1590},"#include \u003Ccstdint>\n",{"type":50,"tag":550,"props":1592,"children":1593},{"class":552,"line":571},[1594],{"type":50,"tag":550,"props":1595,"children":1596},{},[1597],{"type":55,"value":1530},{"type":50,"tag":550,"props":1599,"children":1600},{"class":552,"line":580},[1601],{"type":50,"tag":550,"props":1602,"children":1603},{"emptyLinePlaceholder":993},[1604],{"type":55,"value":996},{"type":50,"tag":550,"props":1606,"children":1607},{"class":552,"line":589},[1608],{"type":50,"tag":550,"props":1609,"children":1610},{},[1611],{"type":55,"value":1612},"using namespace ZOOM_SDK_NAMESPACE;\n",{"type":50,"tag":550,"props":1614,"children":1615},{"class":552,"line":653},[1616],{"type":50,"tag":550,"props":1617,"children":1618},{"emptyLinePlaceholder":993},[1619],{"type":55,"value":996},{"type":50,"tag":550,"props":1621,"children":1622},{"class":552,"line":661},[1623],{"type":50,"tag":550,"props":1624,"children":1625},{},[1626],{"type":55,"value":1627},"bool InitMeetingSDK() {\n",{"type":50,"tag":550,"props":1629,"children":1630},{"class":552,"line":669},[1631],{"type":50,"tag":550,"props":1632,"children":1633},{},[1634],{"type":55,"value":1635},"    InitParam initParam;\n",{"type":50,"tag":550,"props":1637,"children":1638},{"class":552,"line":678},[1639],{"type":50,"tag":550,"props":1640,"children":1641},{},[1642],{"type":55,"value":1643},"    initParam.strWebDomain = L\"https:\u002F\u002Fzoom.us\";\n",{"type":50,"tag":550,"props":1645,"children":1646},{"class":552,"line":686},[1647],{"type":50,"tag":550,"props":1648,"children":1649},{},[1650],{"type":55,"value":1651},"    initParam.strSupportUrl = L\"https:\u002F\u002Fzoom.us\";\n",{"type":50,"tag":550,"props":1653,"children":1655},{"class":552,"line":1654},11,[1656],{"type":50,"tag":550,"props":1657,"children":1658},{},[1659],{"type":55,"value":1660},"    initParam.emLanguageID = LANGUAGE_English;\n",{"type":50,"tag":550,"props":1662,"children":1664},{"class":552,"line":1663},12,[1665],{"type":50,"tag":550,"props":1666,"children":1667},{},[1668],{"type":55,"value":1669},"    initParam.enableLogByDefault = true;\n",{"type":50,"tag":550,"props":1671,"children":1673},{"class":552,"line":1672},13,[1674],{"type":50,"tag":550,"props":1675,"children":1676},{},[1677],{"type":55,"value":1678},"    initParam.enableGenerateDump = true;\n",{"type":50,"tag":550,"props":1680,"children":1682},{"class":552,"line":1681},14,[1683],{"type":50,"tag":550,"props":1684,"children":1685},{},[1686],{"type":55,"value":1687},"    \n",{"type":50,"tag":550,"props":1689,"children":1691},{"class":552,"line":1690},15,[1692],{"type":50,"tag":550,"props":1693,"children":1694},{},[1695],{"type":55,"value":1696},"    SDKError err = InitSDK(initParam);\n",{"type":50,"tag":550,"props":1698,"children":1700},{"class":552,"line":1699},16,[1701],{"type":50,"tag":550,"props":1702,"children":1703},{},[1704],{"type":55,"value":1705},"    if (err != SDKERR_SUCCESS) {\n",{"type":50,"tag":550,"props":1707,"children":1709},{"class":552,"line":1708},17,[1710],{"type":50,"tag":550,"props":1711,"children":1712},{},[1713],{"type":55,"value":1714},"        std::wcout \u003C\u003C L\"InitSDK failed: \" \u003C\u003C err \u003C\u003C std::endl;\n",{"type":50,"tag":550,"props":1716,"children":1718},{"class":552,"line":1717},18,[1719],{"type":50,"tag":550,"props":1720,"children":1721},{},[1722],{"type":55,"value":1723},"        return false;\n",{"type":50,"tag":550,"props":1725,"children":1727},{"class":552,"line":1726},19,[1728],{"type":50,"tag":550,"props":1729,"children":1730},{},[1731],{"type":55,"value":1389},{"type":50,"tag":550,"props":1733,"children":1735},{"class":552,"line":1734},20,[1736],{"type":50,"tag":550,"props":1737,"children":1738},{},[1739],{"type":55,"value":1740},"    return true;\n",{"type":50,"tag":550,"props":1742,"children":1744},{"class":552,"line":1743},21,[1745],{"type":50,"tag":550,"props":1746,"children":1747},{},[1748],{"type":55,"value":1283},{"type":50,"tag":346,"props":1750,"children":1752},{"id":1751},"_2-authenticate-with-jwt",[1753],{"type":55,"value":1754},"2. Authenticate with JWT",{"type":50,"tag":539,"props":1756,"children":1758},{"className":1335,"code":1757,"language":1337,"meta":544,"style":544},"#include \u003Cwindows.h>\n#include \u003Ccstdint>\n#include \u003Cauth_service_interface.h>\n#include \"AuthServiceEventListener.h\"\n\nIAuthService* authService = nullptr;\n\nvoid OnAuthenticationComplete() {\n    std::cout \u003C\u003C \"Authentication successful!\" \u003C\u003C std::endl;\n    JoinMeeting();  \u002F\u002F Proceed to join meeting\n}\n\nbool AuthenticateSDK(const std::wstring& jwtToken) {\n    CreateAuthService(&authService);\n    if (!authService) return false;\n    \n    \u002F\u002F Set event listener BEFORE calling SDKAuth\n    authService->SetEvent(new AuthServiceEventListener(&OnAuthenticationComplete));\n    \n    \u002F\u002F Authenticate with JWT\n    AuthContext authContext;\n    authContext.jwt_token = jwtToken.c_str();\n    \n    SDKError err = authService->SDKAuth(authContext);\n    if (err != SDKERR_SUCCESS) {\n        std::wcout \u003C\u003C L\"SDKAuth failed: \" \u003C\u003C err \u003C\u003C std::endl;\n        return false;\n    }\n    \n    \u002F\u002F CRITICAL: Add message loop or callback won't fire!\n    \u002F\u002F See complete example: examples\u002Fauthentication-pattern.md\n    \n    return true;\n}\n",[1759],{"type":50,"tag":353,"props":1760,"children":1761},{"__ignoreMap":544},[1762,1769,1776,1784,1792,1799,1807,1814,1822,1830,1838,1845,1852,1860,1868,1876,1883,1891,1899,1906,1914,1922,1931,1939,1948,1956,1965,1973,1981,1989,1998,2007,2015,2023],{"type":50,"tag":550,"props":1763,"children":1764},{"class":552,"line":553},[1765],{"type":50,"tag":550,"props":1766,"children":1767},{},[1768],{"type":55,"value":1582},{"type":50,"tag":550,"props":1770,"children":1771},{"class":552,"line":562},[1772],{"type":50,"tag":550,"props":1773,"children":1774},{},[1775],{"type":55,"value":1590},{"type":50,"tag":550,"props":1777,"children":1778},{"class":552,"line":571},[1779],{"type":50,"tag":550,"props":1780,"children":1781},{},[1782],{"type":55,"value":1783},"#include \u003Cauth_service_interface.h>\n",{"type":50,"tag":550,"props":1785,"children":1786},{"class":552,"line":580},[1787],{"type":50,"tag":550,"props":1788,"children":1789},{},[1790],{"type":55,"value":1791},"#include \"AuthServiceEventListener.h\"\n",{"type":50,"tag":550,"props":1793,"children":1794},{"class":552,"line":589},[1795],{"type":50,"tag":550,"props":1796,"children":1797},{"emptyLinePlaceholder":993},[1798],{"type":55,"value":996},{"type":50,"tag":550,"props":1800,"children":1801},{"class":552,"line":653},[1802],{"type":50,"tag":550,"props":1803,"children":1804},{},[1805],{"type":55,"value":1806},"IAuthService* authService = nullptr;\n",{"type":50,"tag":550,"props":1808,"children":1809},{"class":552,"line":661},[1810],{"type":50,"tag":550,"props":1811,"children":1812},{"emptyLinePlaceholder":993},[1813],{"type":55,"value":996},{"type":50,"tag":550,"props":1815,"children":1816},{"class":552,"line":669},[1817],{"type":50,"tag":550,"props":1818,"children":1819},{},[1820],{"type":55,"value":1821},"void OnAuthenticationComplete() {\n",{"type":50,"tag":550,"props":1823,"children":1824},{"class":552,"line":678},[1825],{"type":50,"tag":550,"props":1826,"children":1827},{},[1828],{"type":55,"value":1829},"    std::cout \u003C\u003C \"Authentication successful!\" \u003C\u003C std::endl;\n",{"type":50,"tag":550,"props":1831,"children":1832},{"class":552,"line":686},[1833],{"type":50,"tag":550,"props":1834,"children":1835},{},[1836],{"type":55,"value":1837},"    JoinMeeting();  \u002F\u002F Proceed to join meeting\n",{"type":50,"tag":550,"props":1839,"children":1840},{"class":552,"line":1654},[1841],{"type":50,"tag":550,"props":1842,"children":1843},{},[1844],{"type":55,"value":1283},{"type":50,"tag":550,"props":1846,"children":1847},{"class":552,"line":1663},[1848],{"type":50,"tag":550,"props":1849,"children":1850},{"emptyLinePlaceholder":993},[1851],{"type":55,"value":996},{"type":50,"tag":550,"props":1853,"children":1854},{"class":552,"line":1672},[1855],{"type":50,"tag":550,"props":1856,"children":1857},{},[1858],{"type":55,"value":1859},"bool AuthenticateSDK(const std::wstring& jwtToken) {\n",{"type":50,"tag":550,"props":1861,"children":1862},{"class":552,"line":1681},[1863],{"type":50,"tag":550,"props":1864,"children":1865},{},[1866],{"type":55,"value":1867},"    CreateAuthService(&authService);\n",{"type":50,"tag":550,"props":1869,"children":1870},{"class":552,"line":1690},[1871],{"type":50,"tag":550,"props":1872,"children":1873},{},[1874],{"type":55,"value":1875},"    if (!authService) return false;\n",{"type":50,"tag":550,"props":1877,"children":1878},{"class":552,"line":1699},[1879],{"type":50,"tag":550,"props":1880,"children":1881},{},[1882],{"type":55,"value":1687},{"type":50,"tag":550,"props":1884,"children":1885},{"class":552,"line":1708},[1886],{"type":50,"tag":550,"props":1887,"children":1888},{},[1889],{"type":55,"value":1890},"    \u002F\u002F Set event listener BEFORE calling SDKAuth\n",{"type":50,"tag":550,"props":1892,"children":1893},{"class":552,"line":1717},[1894],{"type":50,"tag":550,"props":1895,"children":1896},{},[1897],{"type":55,"value":1898},"    authService->SetEvent(new AuthServiceEventListener(&OnAuthenticationComplete));\n",{"type":50,"tag":550,"props":1900,"children":1901},{"class":552,"line":1726},[1902],{"type":50,"tag":550,"props":1903,"children":1904},{},[1905],{"type":55,"value":1687},{"type":50,"tag":550,"props":1907,"children":1908},{"class":552,"line":1734},[1909],{"type":50,"tag":550,"props":1910,"children":1911},{},[1912],{"type":55,"value":1913},"    \u002F\u002F Authenticate with JWT\n",{"type":50,"tag":550,"props":1915,"children":1916},{"class":552,"line":1743},[1917],{"type":50,"tag":550,"props":1918,"children":1919},{},[1920],{"type":55,"value":1921},"    AuthContext authContext;\n",{"type":50,"tag":550,"props":1923,"children":1925},{"class":552,"line":1924},22,[1926],{"type":50,"tag":550,"props":1927,"children":1928},{},[1929],{"type":55,"value":1930},"    authContext.jwt_token = jwtToken.c_str();\n",{"type":50,"tag":550,"props":1932,"children":1934},{"class":552,"line":1933},23,[1935],{"type":50,"tag":550,"props":1936,"children":1937},{},[1938],{"type":55,"value":1687},{"type":50,"tag":550,"props":1940,"children":1942},{"class":552,"line":1941},24,[1943],{"type":50,"tag":550,"props":1944,"children":1945},{},[1946],{"type":55,"value":1947},"    SDKError err = authService->SDKAuth(authContext);\n",{"type":50,"tag":550,"props":1949,"children":1951},{"class":552,"line":1950},25,[1952],{"type":50,"tag":550,"props":1953,"children":1954},{},[1955],{"type":55,"value":1705},{"type":50,"tag":550,"props":1957,"children":1959},{"class":552,"line":1958},26,[1960],{"type":50,"tag":550,"props":1961,"children":1962},{},[1963],{"type":55,"value":1964},"        std::wcout \u003C\u003C L\"SDKAuth failed: \" \u003C\u003C err \u003C\u003C std::endl;\n",{"type":50,"tag":550,"props":1966,"children":1968},{"class":552,"line":1967},27,[1969],{"type":50,"tag":550,"props":1970,"children":1971},{},[1972],{"type":55,"value":1723},{"type":50,"tag":550,"props":1974,"children":1976},{"class":552,"line":1975},28,[1977],{"type":50,"tag":550,"props":1978,"children":1979},{},[1980],{"type":55,"value":1389},{"type":50,"tag":550,"props":1982,"children":1984},{"class":552,"line":1983},29,[1985],{"type":50,"tag":550,"props":1986,"children":1987},{},[1988],{"type":55,"value":1687},{"type":50,"tag":550,"props":1990,"children":1992},{"class":552,"line":1991},30,[1993],{"type":50,"tag":550,"props":1994,"children":1995},{},[1996],{"type":55,"value":1997},"    \u002F\u002F CRITICAL: Add message loop or callback won't fire!\n",{"type":50,"tag":550,"props":1999,"children":2001},{"class":552,"line":2000},31,[2002],{"type":50,"tag":550,"props":2003,"children":2004},{},[2005],{"type":55,"value":2006},"    \u002F\u002F See complete example: examples\u002Fauthentication-pattern.md\n",{"type":50,"tag":550,"props":2008,"children":2010},{"class":552,"line":2009},32,[2011],{"type":50,"tag":550,"props":2012,"children":2013},{},[2014],{"type":55,"value":1687},{"type":50,"tag":550,"props":2016,"children":2018},{"class":552,"line":2017},33,[2019],{"type":50,"tag":550,"props":2020,"children":2021},{},[2022],{"type":55,"value":1740},{"type":50,"tag":550,"props":2024,"children":2026},{"class":552,"line":2025},34,[2027],{"type":50,"tag":550,"props":2028,"children":2029},{},[2030],{"type":55,"value":1283},{"type":50,"tag":58,"props":2032,"children":2033},{},[2034],{"type":50,"tag":74,"props":2035,"children":2036},{},[2037],{"type":55,"value":2038},"AuthServiceEventListener.h:",{"type":50,"tag":539,"props":2040,"children":2042},{"className":1335,"code":2041,"language":1337,"meta":544,"style":544},"#include \u003Cwindows.h>\n#include \u003Ccstdint>\n#include \u003Cauth_service_interface.h>\n#include \u003Ciostream>\n\nusing namespace ZOOM_SDK_NAMESPACE;\n\nclass AuthServiceEventListener : public IAuthServiceEvent {\npublic:\n    AuthServiceEventListener(void (*onComplete)()) \n        : onAuthComplete(onComplete) {}\n    \n    void onAuthenticationReturn(AuthResult ret) override {\n        if (ret == AUTHRET_SUCCESS && onAuthComplete) {\n            onAuthComplete();\n        } else {\n            std::cout \u003C\u003C \"Auth failed: \" \u003C\u003C ret \u003C\u003C std::endl;\n        }\n    }\n    \n    \u002F\u002F Must implement ALL pure virtual methods (6 total)\n    void onLoginReturnWithReason(LOGINSTATUS ret, IAccountInfo* info, LoginFailReason reason) override {}\n    void onLogout() override {}\n    void onZoomIdentityExpired() override {}\n    void onZoomAuthIdentityExpired() override {}\n#if defined(WIN32)\n    void onNotificationServiceStatus(SDKNotificationServiceStatus status, SDKNotificationServiceError error) override {}\n#endif\n\nprivate:\n    void (*onAuthComplete)();\n};\n",[2043],{"type":50,"tag":353,"props":2044,"children":2045},{"__ignoreMap":544},[2046,2053,2060,2067,2075,2082,2089,2096,2104,2112,2120,2128,2135,2143,2151,2159,2167,2175,2183,2190,2197,2205,2213,2221,2229,2237,2245,2253,2261,2268,2276,2284],{"type":50,"tag":550,"props":2047,"children":2048},{"class":552,"line":553},[2049],{"type":50,"tag":550,"props":2050,"children":2051},{},[2052],{"type":55,"value":1582},{"type":50,"tag":550,"props":2054,"children":2055},{"class":552,"line":562},[2056],{"type":50,"tag":550,"props":2057,"children":2058},{},[2059],{"type":55,"value":1590},{"type":50,"tag":550,"props":2061,"children":2062},{"class":552,"line":571},[2063],{"type":50,"tag":550,"props":2064,"children":2065},{},[2066],{"type":55,"value":1783},{"type":50,"tag":550,"props":2068,"children":2069},{"class":552,"line":580},[2070],{"type":50,"tag":550,"props":2071,"children":2072},{},[2073],{"type":55,"value":2074},"#include \u003Ciostream>\n",{"type":50,"tag":550,"props":2076,"children":2077},{"class":552,"line":589},[2078],{"type":50,"tag":550,"props":2079,"children":2080},{"emptyLinePlaceholder":993},[2081],{"type":55,"value":996},{"type":50,"tag":550,"props":2083,"children":2084},{"class":552,"line":653},[2085],{"type":50,"tag":550,"props":2086,"children":2087},{},[2088],{"type":55,"value":1612},{"type":50,"tag":550,"props":2090,"children":2091},{"class":552,"line":661},[2092],{"type":50,"tag":550,"props":2093,"children":2094},{"emptyLinePlaceholder":993},[2095],{"type":55,"value":996},{"type":50,"tag":550,"props":2097,"children":2098},{"class":552,"line":669},[2099],{"type":50,"tag":550,"props":2100,"children":2101},{},[2102],{"type":55,"value":2103},"class AuthServiceEventListener : public IAuthServiceEvent {\n",{"type":50,"tag":550,"props":2105,"children":2106},{"class":552,"line":678},[2107],{"type":50,"tag":550,"props":2108,"children":2109},{},[2110],{"type":55,"value":2111},"public:\n",{"type":50,"tag":550,"props":2113,"children":2114},{"class":552,"line":686},[2115],{"type":50,"tag":550,"props":2116,"children":2117},{},[2118],{"type":55,"value":2119},"    AuthServiceEventListener(void (*onComplete)()) \n",{"type":50,"tag":550,"props":2121,"children":2122},{"class":552,"line":1654},[2123],{"type":50,"tag":550,"props":2124,"children":2125},{},[2126],{"type":55,"value":2127},"        : onAuthComplete(onComplete) {}\n",{"type":50,"tag":550,"props":2129,"children":2130},{"class":552,"line":1663},[2131],{"type":50,"tag":550,"props":2132,"children":2133},{},[2134],{"type":55,"value":1687},{"type":50,"tag":550,"props":2136,"children":2137},{"class":552,"line":1672},[2138],{"type":50,"tag":550,"props":2139,"children":2140},{},[2141],{"type":55,"value":2142},"    void onAuthenticationReturn(AuthResult ret) override {\n",{"type":50,"tag":550,"props":2144,"children":2145},{"class":552,"line":1681},[2146],{"type":50,"tag":550,"props":2147,"children":2148},{},[2149],{"type":55,"value":2150},"        if (ret == AUTHRET_SUCCESS && onAuthComplete) {\n",{"type":50,"tag":550,"props":2152,"children":2153},{"class":552,"line":1690},[2154],{"type":50,"tag":550,"props":2155,"children":2156},{},[2157],{"type":55,"value":2158},"            onAuthComplete();\n",{"type":50,"tag":550,"props":2160,"children":2161},{"class":552,"line":1699},[2162],{"type":50,"tag":550,"props":2163,"children":2164},{},[2165],{"type":55,"value":2166},"        } else {\n",{"type":50,"tag":550,"props":2168,"children":2169},{"class":552,"line":1708},[2170],{"type":50,"tag":550,"props":2171,"children":2172},{},[2173],{"type":55,"value":2174},"            std::cout \u003C\u003C \"Auth failed: \" \u003C\u003C ret \u003C\u003C std::endl;\n",{"type":50,"tag":550,"props":2176,"children":2177},{"class":552,"line":1717},[2178],{"type":50,"tag":550,"props":2179,"children":2180},{},[2181],{"type":55,"value":2182},"        }\n",{"type":50,"tag":550,"props":2184,"children":2185},{"class":552,"line":1726},[2186],{"type":50,"tag":550,"props":2187,"children":2188},{},[2189],{"type":55,"value":1389},{"type":50,"tag":550,"props":2191,"children":2192},{"class":552,"line":1734},[2193],{"type":50,"tag":550,"props":2194,"children":2195},{},[2196],{"type":55,"value":1687},{"type":50,"tag":550,"props":2198,"children":2199},{"class":552,"line":1743},[2200],{"type":50,"tag":550,"props":2201,"children":2202},{},[2203],{"type":55,"value":2204},"    \u002F\u002F Must implement ALL pure virtual methods (6 total)\n",{"type":50,"tag":550,"props":2206,"children":2207},{"class":552,"line":1924},[2208],{"type":50,"tag":550,"props":2209,"children":2210},{},[2211],{"type":55,"value":2212},"    void onLoginReturnWithReason(LOGINSTATUS ret, IAccountInfo* info, LoginFailReason reason) override {}\n",{"type":50,"tag":550,"props":2214,"children":2215},{"class":552,"line":1933},[2216],{"type":50,"tag":550,"props":2217,"children":2218},{},[2219],{"type":55,"value":2220},"    void onLogout() override {}\n",{"type":50,"tag":550,"props":2222,"children":2223},{"class":552,"line":1941},[2224],{"type":50,"tag":550,"props":2225,"children":2226},{},[2227],{"type":55,"value":2228},"    void onZoomIdentityExpired() override {}\n",{"type":50,"tag":550,"props":2230,"children":2231},{"class":552,"line":1950},[2232],{"type":50,"tag":550,"props":2233,"children":2234},{},[2235],{"type":55,"value":2236},"    void onZoomAuthIdentityExpired() override {}\n",{"type":50,"tag":550,"props":2238,"children":2239},{"class":552,"line":1958},[2240],{"type":50,"tag":550,"props":2241,"children":2242},{},[2243],{"type":55,"value":2244},"#if defined(WIN32)\n",{"type":50,"tag":550,"props":2246,"children":2247},{"class":552,"line":1967},[2248],{"type":50,"tag":550,"props":2249,"children":2250},{},[2251],{"type":55,"value":2252},"    void onNotificationServiceStatus(SDKNotificationServiceStatus status, SDKNotificationServiceError error) override {}\n",{"type":50,"tag":550,"props":2254,"children":2255},{"class":552,"line":1975},[2256],{"type":50,"tag":550,"props":2257,"children":2258},{},[2259],{"type":55,"value":2260},"#endif\n",{"type":50,"tag":550,"props":2262,"children":2263},{"class":552,"line":1983},[2264],{"type":50,"tag":550,"props":2265,"children":2266},{"emptyLinePlaceholder":993},[2267],{"type":55,"value":996},{"type":50,"tag":550,"props":2269,"children":2270},{"class":552,"line":1991},[2271],{"type":50,"tag":550,"props":2272,"children":2273},{},[2274],{"type":55,"value":2275},"private:\n",{"type":50,"tag":550,"props":2277,"children":2278},{"class":552,"line":2000},[2279],{"type":50,"tag":550,"props":2280,"children":2281},{},[2282],{"type":55,"value":2283},"    void (*onAuthComplete)();\n",{"type":50,"tag":550,"props":2285,"children":2286},{"class":552,"line":2009},[2287],{"type":50,"tag":550,"props":2288,"children":2289},{},[2290],{"type":55,"value":2291},"};\n",{"type":50,"tag":58,"props":2293,"children":2294},{},[2295,2300,2301],{"type":50,"tag":74,"props":2296,"children":2297},{},[2298],{"type":55,"value":2299},"See complete working code",{"type":55,"value":799},{"type":50,"tag":91,"props":2302,"children":2303},{"href":107},[2304],{"type":55,"value":2305},"Authentication Pattern Guide",{"type":50,"tag":346,"props":2307,"children":2309},{"id":2308},"_3-join-meeting",[2310],{"type":55,"value":2311},"3. Join Meeting",{"type":50,"tag":539,"props":2313,"children":2315},{"className":1335,"code":2314,"language":1337,"meta":544,"style":544},"#include \u003Cmeeting_service_interface.h>\n#include \"MeetingServiceEventListener.h\"\n\nIMeetingService* meetingService = nullptr;\n\nvoid OnMeetingJoined() {\n    std::cout \u003C\u003C \"Joining meeting...\" \u003C\u003C std::endl;\n}\n\nvoid OnInMeeting() {\n    std::cout \u003C\u003C \"In meeting now!\" \u003C\u003C std::endl;\n    \u002F\u002F Start raw data capture here\n}\n\nvoid OnMeetingEnds() {\n    std::cout \u003C\u003C \"Meeting ended\" \u003C\u003C std::endl;\n}\n\nbool JoinMeeting(UINT64 meetingNumber, const std::wstring& password) {\n    CreateMeetingService(&meetingService);\n    if (!meetingService) return false;\n    \n    \u002F\u002F Set event listener\n    meetingService->SetEvent(\n        new MeetingServiceEventListener(&OnMeetingJoined, &OnMeetingEnds, &OnInMeeting)\n    );\n    \n    \u002F\u002F Prepare join parameters\n    JoinParam joinParam;\n    joinParam.userType = SDK_UT_WITHOUT_LOGIN;\n    \n    JoinParam4WithoutLogin& params = joinParam.param.withoutloginuserJoin;\n    params.meetingNumber = meetingNumber;\n    params.userName = L\"Bot User\";\n    params.psw = password.c_str();\n    params.isVideoOff = false;\n    params.isAudioOff = false;\n    \n    SDKError err = meetingService->Join(joinParam);\n    if (err != SDKERR_SUCCESS) {\n        std::wcout \u003C\u003C L\"Join failed: \" \u003C\u003C err \u003C\u003C std::endl;\n        return false;\n    }\n    return true;\n}\n",[2316],{"type":50,"tag":353,"props":2317,"children":2318},{"__ignoreMap":544},[2319,2327,2335,2342,2350,2357,2365,2373,2380,2387,2395,2403,2411,2418,2425,2433,2441,2448,2455,2463,2471,2479,2486,2494,2502,2510,2518,2525,2533,2541,2549,2556,2564,2572,2580,2589,2598,2607,2615,2624,2632,2641,2649,2657,2665],{"type":50,"tag":550,"props":2320,"children":2321},{"class":552,"line":553},[2322],{"type":50,"tag":550,"props":2323,"children":2324},{},[2325],{"type":55,"value":2326},"#include \u003Cmeeting_service_interface.h>\n",{"type":50,"tag":550,"props":2328,"children":2329},{"class":552,"line":562},[2330],{"type":50,"tag":550,"props":2331,"children":2332},{},[2333],{"type":55,"value":2334},"#include \"MeetingServiceEventListener.h\"\n",{"type":50,"tag":550,"props":2336,"children":2337},{"class":552,"line":571},[2338],{"type":50,"tag":550,"props":2339,"children":2340},{"emptyLinePlaceholder":993},[2341],{"type":55,"value":996},{"type":50,"tag":550,"props":2343,"children":2344},{"class":552,"line":580},[2345],{"type":50,"tag":550,"props":2346,"children":2347},{},[2348],{"type":55,"value":2349},"IMeetingService* meetingService = nullptr;\n",{"type":50,"tag":550,"props":2351,"children":2352},{"class":552,"line":589},[2353],{"type":50,"tag":550,"props":2354,"children":2355},{"emptyLinePlaceholder":993},[2356],{"type":55,"value":996},{"type":50,"tag":550,"props":2358,"children":2359},{"class":552,"line":653},[2360],{"type":50,"tag":550,"props":2361,"children":2362},{},[2363],{"type":55,"value":2364},"void OnMeetingJoined() {\n",{"type":50,"tag":550,"props":2366,"children":2367},{"class":552,"line":661},[2368],{"type":50,"tag":550,"props":2369,"children":2370},{},[2371],{"type":55,"value":2372},"    std::cout \u003C\u003C \"Joining meeting...\" \u003C\u003C std::endl;\n",{"type":50,"tag":550,"props":2374,"children":2375},{"class":552,"line":669},[2376],{"type":50,"tag":550,"props":2377,"children":2378},{},[2379],{"type":55,"value":1283},{"type":50,"tag":550,"props":2381,"children":2382},{"class":552,"line":678},[2383],{"type":50,"tag":550,"props":2384,"children":2385},{"emptyLinePlaceholder":993},[2386],{"type":55,"value":996},{"type":50,"tag":550,"props":2388,"children":2389},{"class":552,"line":686},[2390],{"type":50,"tag":550,"props":2391,"children":2392},{},[2393],{"type":55,"value":2394},"void OnInMeeting() {\n",{"type":50,"tag":550,"props":2396,"children":2397},{"class":552,"line":1654},[2398],{"type":50,"tag":550,"props":2399,"children":2400},{},[2401],{"type":55,"value":2402},"    std::cout \u003C\u003C \"In meeting now!\" \u003C\u003C std::endl;\n",{"type":50,"tag":550,"props":2404,"children":2405},{"class":552,"line":1663},[2406],{"type":50,"tag":550,"props":2407,"children":2408},{},[2409],{"type":55,"value":2410},"    \u002F\u002F Start raw data capture here\n",{"type":50,"tag":550,"props":2412,"children":2413},{"class":552,"line":1672},[2414],{"type":50,"tag":550,"props":2415,"children":2416},{},[2417],{"type":55,"value":1283},{"type":50,"tag":550,"props":2419,"children":2420},{"class":552,"line":1681},[2421],{"type":50,"tag":550,"props":2422,"children":2423},{"emptyLinePlaceholder":993},[2424],{"type":55,"value":996},{"type":50,"tag":550,"props":2426,"children":2427},{"class":552,"line":1690},[2428],{"type":50,"tag":550,"props":2429,"children":2430},{},[2431],{"type":55,"value":2432},"void OnMeetingEnds() {\n",{"type":50,"tag":550,"props":2434,"children":2435},{"class":552,"line":1699},[2436],{"type":50,"tag":550,"props":2437,"children":2438},{},[2439],{"type":55,"value":2440},"    std::cout \u003C\u003C \"Meeting ended\" \u003C\u003C std::endl;\n",{"type":50,"tag":550,"props":2442,"children":2443},{"class":552,"line":1708},[2444],{"type":50,"tag":550,"props":2445,"children":2446},{},[2447],{"type":55,"value":1283},{"type":50,"tag":550,"props":2449,"children":2450},{"class":552,"line":1717},[2451],{"type":50,"tag":550,"props":2452,"children":2453},{"emptyLinePlaceholder":993},[2454],{"type":55,"value":996},{"type":50,"tag":550,"props":2456,"children":2457},{"class":552,"line":1726},[2458],{"type":50,"tag":550,"props":2459,"children":2460},{},[2461],{"type":55,"value":2462},"bool JoinMeeting(UINT64 meetingNumber, const std::wstring& password) {\n",{"type":50,"tag":550,"props":2464,"children":2465},{"class":552,"line":1734},[2466],{"type":50,"tag":550,"props":2467,"children":2468},{},[2469],{"type":55,"value":2470},"    CreateMeetingService(&meetingService);\n",{"type":50,"tag":550,"props":2472,"children":2473},{"class":552,"line":1743},[2474],{"type":50,"tag":550,"props":2475,"children":2476},{},[2477],{"type":55,"value":2478},"    if (!meetingService) return false;\n",{"type":50,"tag":550,"props":2480,"children":2481},{"class":552,"line":1924},[2482],{"type":50,"tag":550,"props":2483,"children":2484},{},[2485],{"type":55,"value":1687},{"type":50,"tag":550,"props":2487,"children":2488},{"class":552,"line":1933},[2489],{"type":50,"tag":550,"props":2490,"children":2491},{},[2492],{"type":55,"value":2493},"    \u002F\u002F Set event listener\n",{"type":50,"tag":550,"props":2495,"children":2496},{"class":552,"line":1941},[2497],{"type":50,"tag":550,"props":2498,"children":2499},{},[2500],{"type":55,"value":2501},"    meetingService->SetEvent(\n",{"type":50,"tag":550,"props":2503,"children":2504},{"class":552,"line":1950},[2505],{"type":50,"tag":550,"props":2506,"children":2507},{},[2508],{"type":55,"value":2509},"        new MeetingServiceEventListener(&OnMeetingJoined, &OnMeetingEnds, &OnInMeeting)\n",{"type":50,"tag":550,"props":2511,"children":2512},{"class":552,"line":1958},[2513],{"type":50,"tag":550,"props":2514,"children":2515},{},[2516],{"type":55,"value":2517},"    );\n",{"type":50,"tag":550,"props":2519,"children":2520},{"class":552,"line":1967},[2521],{"type":50,"tag":550,"props":2522,"children":2523},{},[2524],{"type":55,"value":1687},{"type":50,"tag":550,"props":2526,"children":2527},{"class":552,"line":1975},[2528],{"type":50,"tag":550,"props":2529,"children":2530},{},[2531],{"type":55,"value":2532},"    \u002F\u002F Prepare join parameters\n",{"type":50,"tag":550,"props":2534,"children":2535},{"class":552,"line":1983},[2536],{"type":50,"tag":550,"props":2537,"children":2538},{},[2539],{"type":55,"value":2540},"    JoinParam joinParam;\n",{"type":50,"tag":550,"props":2542,"children":2543},{"class":552,"line":1991},[2544],{"type":50,"tag":550,"props":2545,"children":2546},{},[2547],{"type":55,"value":2548},"    joinParam.userType = SDK_UT_WITHOUT_LOGIN;\n",{"type":50,"tag":550,"props":2550,"children":2551},{"class":552,"line":2000},[2552],{"type":50,"tag":550,"props":2553,"children":2554},{},[2555],{"type":55,"value":1687},{"type":50,"tag":550,"props":2557,"children":2558},{"class":552,"line":2009},[2559],{"type":50,"tag":550,"props":2560,"children":2561},{},[2562],{"type":55,"value":2563},"    JoinParam4WithoutLogin& params = joinParam.param.withoutloginuserJoin;\n",{"type":50,"tag":550,"props":2565,"children":2566},{"class":552,"line":2017},[2567],{"type":50,"tag":550,"props":2568,"children":2569},{},[2570],{"type":55,"value":2571},"    params.meetingNumber = meetingNumber;\n",{"type":50,"tag":550,"props":2573,"children":2574},{"class":552,"line":2025},[2575],{"type":50,"tag":550,"props":2576,"children":2577},{},[2578],{"type":55,"value":2579},"    params.userName = L\"Bot User\";\n",{"type":50,"tag":550,"props":2581,"children":2583},{"class":552,"line":2582},35,[2584],{"type":50,"tag":550,"props":2585,"children":2586},{},[2587],{"type":55,"value":2588},"    params.psw = password.c_str();\n",{"type":50,"tag":550,"props":2590,"children":2592},{"class":552,"line":2591},36,[2593],{"type":50,"tag":550,"props":2594,"children":2595},{},[2596],{"type":55,"value":2597},"    params.isVideoOff = false;\n",{"type":50,"tag":550,"props":2599,"children":2601},{"class":552,"line":2600},37,[2602],{"type":50,"tag":550,"props":2603,"children":2604},{},[2605],{"type":55,"value":2606},"    params.isAudioOff = false;\n",{"type":50,"tag":550,"props":2608,"children":2610},{"class":552,"line":2609},38,[2611],{"type":50,"tag":550,"props":2612,"children":2613},{},[2614],{"type":55,"value":1687},{"type":50,"tag":550,"props":2616,"children":2618},{"class":552,"line":2617},39,[2619],{"type":50,"tag":550,"props":2620,"children":2621},{},[2622],{"type":55,"value":2623},"    SDKError err = meetingService->Join(joinParam);\n",{"type":50,"tag":550,"props":2625,"children":2627},{"class":552,"line":2626},40,[2628],{"type":50,"tag":550,"props":2629,"children":2630},{},[2631],{"type":55,"value":1705},{"type":50,"tag":550,"props":2633,"children":2635},{"class":552,"line":2634},41,[2636],{"type":50,"tag":550,"props":2637,"children":2638},{},[2639],{"type":55,"value":2640},"        std::wcout \u003C\u003C L\"Join failed: \" \u003C\u003C err \u003C\u003C std::endl;\n",{"type":50,"tag":550,"props":2642,"children":2644},{"class":552,"line":2643},42,[2645],{"type":50,"tag":550,"props":2646,"children":2647},{},[2648],{"type":55,"value":1723},{"type":50,"tag":550,"props":2650,"children":2652},{"class":552,"line":2651},43,[2653],{"type":50,"tag":550,"props":2654,"children":2655},{},[2656],{"type":55,"value":1389},{"type":50,"tag":550,"props":2658,"children":2660},{"class":552,"line":2659},44,[2661],{"type":50,"tag":550,"props":2662,"children":2663},{},[2664],{"type":55,"value":1740},{"type":50,"tag":550,"props":2666,"children":2668},{"class":552,"line":2667},45,[2669],{"type":50,"tag":550,"props":2670,"children":2671},{},[2672],{"type":55,"value":1283},{"type":50,"tag":58,"props":2674,"children":2675},{},[2676],{"type":50,"tag":74,"props":2677,"children":2678},{},[2679],{"type":55,"value":2680},"MeetingServiceEventListener.h:",{"type":50,"tag":539,"props":2682,"children":2684},{"className":1335,"code":2683,"language":1337,"meta":544,"style":544},"#include \u003Cwindows.h>\n#include \u003Ccstdint>\n#include \u003Cmeeting_service_interface.h>\n#include \u003Ciostream>\n\nusing namespace ZOOM_SDK_NAMESPACE;\n\nclass MeetingServiceEventListener : public IMeetingServiceEvent {\npublic:\n    MeetingServiceEventListener(\n        void (*onJoined)(),\n        void (*onEnded)(), \n        void (*onInMeeting)()\n    ) : onMeetingJoined(onJoined), \n        onMeetingEnded(onEnded),\n        onInMeetingCallback(onInMeeting) {}\n    \n    void onMeetingStatusChanged(MeetingStatus status, int iResult) override {\n        if (status == MEETING_STATUS_CONNECTING) {\n            if (onMeetingJoined) onMeetingJoined();\n        }\n        else if (status == MEETING_STATUS_INMEETING) {\n            if (onInMeetingCallback) onInMeetingCallback();\n        }\n        else if (status == MEETING_STATUS_ENDED) {\n            if (onMeetingEnded) onMeetingEnded();\n        }\n    }\n    \n    \u002F\u002F Must implement ALL pure virtual methods (9 total)\n    void onMeetingStatisticsWarningNotification(StatisticsWarningType type) override {}\n    void onMeetingParameterNotification(const MeetingParameter* param) override {}\n    void onSuspendParticipantsActivities() override {}\n    void onAICompanionActiveChangeNotice(bool isActive) override {}\n    void onMeetingTopicChanged(const zchar_t* sTopic) override {}\n    void onMeetingFullToWatchLiveStream(const zchar_t* sLiveStreamUrl) override {}\n    void onUserNetworkStatusChanged(MeetingComponentType type, ConnectionQuality level, unsigned int userId, bool uplink) override {}\n#if defined(WIN32)\n    void onAppSignalPanelUpdated(IMeetingAppSignalHandler* pHandler) override {}\n#endif\n\nprivate:\n    void (*onMeetingJoined)();\n    void (*onMeetingEnded)();\n    void (*onInMeetingCallback)();\n};\n",[2685],{"type":50,"tag":353,"props":2686,"children":2687},{"__ignoreMap":544},[2688,2695,2702,2709,2716,2723,2730,2737,2745,2752,2760,2768,2776,2784,2792,2800,2808,2815,2823,2831,2839,2846,2854,2862,2869,2877,2885,2892,2899,2906,2914,2922,2930,2938,2946,2954,2962,2970,2977,2985,2992,2999,3006,3014,3022,3030],{"type":50,"tag":550,"props":2689,"children":2690},{"class":552,"line":553},[2691],{"type":50,"tag":550,"props":2692,"children":2693},{},[2694],{"type":55,"value":1582},{"type":50,"tag":550,"props":2696,"children":2697},{"class":552,"line":562},[2698],{"type":50,"tag":550,"props":2699,"children":2700},{},[2701],{"type":55,"value":1590},{"type":50,"tag":550,"props":2703,"children":2704},{"class":552,"line":571},[2705],{"type":50,"tag":550,"props":2706,"children":2707},{},[2708],{"type":55,"value":2326},{"type":50,"tag":550,"props":2710,"children":2711},{"class":552,"line":580},[2712],{"type":50,"tag":550,"props":2713,"children":2714},{},[2715],{"type":55,"value":2074},{"type":50,"tag":550,"props":2717,"children":2718},{"class":552,"line":589},[2719],{"type":50,"tag":550,"props":2720,"children":2721},{"emptyLinePlaceholder":993},[2722],{"type":55,"value":996},{"type":50,"tag":550,"props":2724,"children":2725},{"class":552,"line":653},[2726],{"type":50,"tag":550,"props":2727,"children":2728},{},[2729],{"type":55,"value":1612},{"type":50,"tag":550,"props":2731,"children":2732},{"class":552,"line":661},[2733],{"type":50,"tag":550,"props":2734,"children":2735},{"emptyLinePlaceholder":993},[2736],{"type":55,"value":996},{"type":50,"tag":550,"props":2738,"children":2739},{"class":552,"line":669},[2740],{"type":50,"tag":550,"props":2741,"children":2742},{},[2743],{"type":55,"value":2744},"class MeetingServiceEventListener : public IMeetingServiceEvent {\n",{"type":50,"tag":550,"props":2746,"children":2747},{"class":552,"line":678},[2748],{"type":50,"tag":550,"props":2749,"children":2750},{},[2751],{"type":55,"value":2111},{"type":50,"tag":550,"props":2753,"children":2754},{"class":552,"line":686},[2755],{"type":50,"tag":550,"props":2756,"children":2757},{},[2758],{"type":55,"value":2759},"    MeetingServiceEventListener(\n",{"type":50,"tag":550,"props":2761,"children":2762},{"class":552,"line":1654},[2763],{"type":50,"tag":550,"props":2764,"children":2765},{},[2766],{"type":55,"value":2767},"        void (*onJoined)(),\n",{"type":50,"tag":550,"props":2769,"children":2770},{"class":552,"line":1663},[2771],{"type":50,"tag":550,"props":2772,"children":2773},{},[2774],{"type":55,"value":2775},"        void (*onEnded)(), \n",{"type":50,"tag":550,"props":2777,"children":2778},{"class":552,"line":1672},[2779],{"type":50,"tag":550,"props":2780,"children":2781},{},[2782],{"type":55,"value":2783},"        void (*onInMeeting)()\n",{"type":50,"tag":550,"props":2785,"children":2786},{"class":552,"line":1681},[2787],{"type":50,"tag":550,"props":2788,"children":2789},{},[2790],{"type":55,"value":2791},"    ) : onMeetingJoined(onJoined), \n",{"type":50,"tag":550,"props":2793,"children":2794},{"class":552,"line":1690},[2795],{"type":50,"tag":550,"props":2796,"children":2797},{},[2798],{"type":55,"value":2799},"        onMeetingEnded(onEnded),\n",{"type":50,"tag":550,"props":2801,"children":2802},{"class":552,"line":1699},[2803],{"type":50,"tag":550,"props":2804,"children":2805},{},[2806],{"type":55,"value":2807},"        onInMeetingCallback(onInMeeting) {}\n",{"type":50,"tag":550,"props":2809,"children":2810},{"class":552,"line":1708},[2811],{"type":50,"tag":550,"props":2812,"children":2813},{},[2814],{"type":55,"value":1687},{"type":50,"tag":550,"props":2816,"children":2817},{"class":552,"line":1717},[2818],{"type":50,"tag":550,"props":2819,"children":2820},{},[2821],{"type":55,"value":2822},"    void onMeetingStatusChanged(MeetingStatus status, int iResult) override {\n",{"type":50,"tag":550,"props":2824,"children":2825},{"class":552,"line":1726},[2826],{"type":50,"tag":550,"props":2827,"children":2828},{},[2829],{"type":55,"value":2830},"        if (status == MEETING_STATUS_CONNECTING) {\n",{"type":50,"tag":550,"props":2832,"children":2833},{"class":552,"line":1734},[2834],{"type":50,"tag":550,"props":2835,"children":2836},{},[2837],{"type":55,"value":2838},"            if (onMeetingJoined) onMeetingJoined();\n",{"type":50,"tag":550,"props":2840,"children":2841},{"class":552,"line":1743},[2842],{"type":50,"tag":550,"props":2843,"children":2844},{},[2845],{"type":55,"value":2182},{"type":50,"tag":550,"props":2847,"children":2848},{"class":552,"line":1924},[2849],{"type":50,"tag":550,"props":2850,"children":2851},{},[2852],{"type":55,"value":2853},"        else if (status == MEETING_STATUS_INMEETING) {\n",{"type":50,"tag":550,"props":2855,"children":2856},{"class":552,"line":1933},[2857],{"type":50,"tag":550,"props":2858,"children":2859},{},[2860],{"type":55,"value":2861},"            if (onInMeetingCallback) onInMeetingCallback();\n",{"type":50,"tag":550,"props":2863,"children":2864},{"class":552,"line":1941},[2865],{"type":50,"tag":550,"props":2866,"children":2867},{},[2868],{"type":55,"value":2182},{"type":50,"tag":550,"props":2870,"children":2871},{"class":552,"line":1950},[2872],{"type":50,"tag":550,"props":2873,"children":2874},{},[2875],{"type":55,"value":2876},"        else if (status == MEETING_STATUS_ENDED) {\n",{"type":50,"tag":550,"props":2878,"children":2879},{"class":552,"line":1958},[2880],{"type":50,"tag":550,"props":2881,"children":2882},{},[2883],{"type":55,"value":2884},"            if (onMeetingEnded) onMeetingEnded();\n",{"type":50,"tag":550,"props":2886,"children":2887},{"class":552,"line":1967},[2888],{"type":50,"tag":550,"props":2889,"children":2890},{},[2891],{"type":55,"value":2182},{"type":50,"tag":550,"props":2893,"children":2894},{"class":552,"line":1975},[2895],{"type":50,"tag":550,"props":2896,"children":2897},{},[2898],{"type":55,"value":1389},{"type":50,"tag":550,"props":2900,"children":2901},{"class":552,"line":1983},[2902],{"type":50,"tag":550,"props":2903,"children":2904},{},[2905],{"type":55,"value":1687},{"type":50,"tag":550,"props":2907,"children":2908},{"class":552,"line":1991},[2909],{"type":50,"tag":550,"props":2910,"children":2911},{},[2912],{"type":55,"value":2913},"    \u002F\u002F Must implement ALL pure virtual methods (9 total)\n",{"type":50,"tag":550,"props":2915,"children":2916},{"class":552,"line":2000},[2917],{"type":50,"tag":550,"props":2918,"children":2919},{},[2920],{"type":55,"value":2921},"    void onMeetingStatisticsWarningNotification(StatisticsWarningType type) override {}\n",{"type":50,"tag":550,"props":2923,"children":2924},{"class":552,"line":2009},[2925],{"type":50,"tag":550,"props":2926,"children":2927},{},[2928],{"type":55,"value":2929},"    void onMeetingParameterNotification(const MeetingParameter* param) override {}\n",{"type":50,"tag":550,"props":2931,"children":2932},{"class":552,"line":2017},[2933],{"type":50,"tag":550,"props":2934,"children":2935},{},[2936],{"type":55,"value":2937},"    void onSuspendParticipantsActivities() override {}\n",{"type":50,"tag":550,"props":2939,"children":2940},{"class":552,"line":2025},[2941],{"type":50,"tag":550,"props":2942,"children":2943},{},[2944],{"type":55,"value":2945},"    void onAICompanionActiveChangeNotice(bool isActive) override {}\n",{"type":50,"tag":550,"props":2947,"children":2948},{"class":552,"line":2582},[2949],{"type":50,"tag":550,"props":2950,"children":2951},{},[2952],{"type":55,"value":2953},"    void onMeetingTopicChanged(const zchar_t* sTopic) override {}\n",{"type":50,"tag":550,"props":2955,"children":2956},{"class":552,"line":2591},[2957],{"type":50,"tag":550,"props":2958,"children":2959},{},[2960],{"type":55,"value":2961},"    void onMeetingFullToWatchLiveStream(const zchar_t* sLiveStreamUrl) override {}\n",{"type":50,"tag":550,"props":2963,"children":2964},{"class":552,"line":2600},[2965],{"type":50,"tag":550,"props":2966,"children":2967},{},[2968],{"type":55,"value":2969},"    void onUserNetworkStatusChanged(MeetingComponentType type, ConnectionQuality level, unsigned int userId, bool uplink) override {}\n",{"type":50,"tag":550,"props":2971,"children":2972},{"class":552,"line":2609},[2973],{"type":50,"tag":550,"props":2974,"children":2975},{},[2976],{"type":55,"value":2244},{"type":50,"tag":550,"props":2978,"children":2979},{"class":552,"line":2617},[2980],{"type":50,"tag":550,"props":2981,"children":2982},{},[2983],{"type":55,"value":2984},"    void onAppSignalPanelUpdated(IMeetingAppSignalHandler* pHandler) override {}\n",{"type":50,"tag":550,"props":2986,"children":2987},{"class":552,"line":2626},[2988],{"type":50,"tag":550,"props":2989,"children":2990},{},[2991],{"type":55,"value":2260},{"type":50,"tag":550,"props":2993,"children":2994},{"class":552,"line":2634},[2995],{"type":50,"tag":550,"props":2996,"children":2997},{"emptyLinePlaceholder":993},[2998],{"type":55,"value":996},{"type":50,"tag":550,"props":3000,"children":3001},{"class":552,"line":2643},[3002],{"type":50,"tag":550,"props":3003,"children":3004},{},[3005],{"type":55,"value":2275},{"type":50,"tag":550,"props":3007,"children":3008},{"class":552,"line":2651},[3009],{"type":50,"tag":550,"props":3010,"children":3011},{},[3012],{"type":55,"value":3013},"    void (*onMeetingJoined)();\n",{"type":50,"tag":550,"props":3015,"children":3016},{"class":552,"line":2659},[3017],{"type":50,"tag":550,"props":3018,"children":3019},{},[3020],{"type":55,"value":3021},"    void (*onMeetingEnded)();\n",{"type":50,"tag":550,"props":3023,"children":3024},{"class":552,"line":2667},[3025],{"type":50,"tag":550,"props":3026,"children":3027},{},[3028],{"type":55,"value":3029},"    void (*onInMeetingCallback)();\n",{"type":50,"tag":550,"props":3031,"children":3033},{"class":552,"line":3032},46,[3034],{"type":50,"tag":550,"props":3035,"children":3036},{},[3037],{"type":55,"value":2291},{"type":50,"tag":58,"props":3039,"children":3040},{},[3041,3046,3047],{"type":50,"tag":74,"props":3042,"children":3043},{},[3044],{"type":55,"value":3045},"See all required methods",{"type":55,"value":799},{"type":50,"tag":91,"props":3048,"children":3049},{"href":177},[3050],{"type":55,"value":3051},"Interface Methods Guide",{"type":50,"tag":346,"props":3053,"children":3055},{"id":3054},"_4-subscribe-to-raw-video",[3056],{"type":55,"value":3057},"4. Subscribe to Raw Video",{"type":50,"tag":539,"props":3059,"children":3061},{"className":1335,"code":3060,"language":1337,"meta":544,"style":544},"#include \u003Cwindows.h>\n#include \u003Ccstdint>\n#include \u003Crawdata\u002Fzoom_rawdata_api.h>\n#include \u003Crawdata\u002Frawdata_renderer_interface.h>\n#include \u003Czoom_sdk_raw_data_def.h>  \u002F\u002F REQUIRED for YUVRawDataI420\n#include \"ZoomSDKRendererDelegate.h\"\n\nIZoomSDKRenderer* videoHelper = nullptr;\nZoomSDKRendererDelegate* videoSource = new ZoomSDKRendererDelegate();\n\nbool StartVideoCapture(uint32_t userId) {\n    \u002F\u002F STEP 1: Start raw recording FIRST (required!)\n    IMeetingRecordingController* recordCtrl = \n        meetingService->GetMeetingRecordingController();\n    \n    SDKError canStart = recordCtrl->CanStartRawRecording();\n    if (canStart != SDKERR_SUCCESS) {\n        std::cout \u003C\u003C \"Cannot start recording: \" \u003C\u003C canStart \u003C\u003C std::endl;\n        return false;\n    }\n    \n    recordCtrl->StartRawRecording();\n    \n    \u002F\u002F Wait for recording to initialize\n    std::this_thread::sleep_for(std::chrono::milliseconds(500));\n    \n    \u002F\u002F STEP 2: Create renderer\n    SDKError err = createRenderer(&videoHelper, videoSource);\n    if (err != SDKERR_SUCCESS || !videoHelper) {\n        std::cout \u003C\u003C \"createRenderer failed: \" \u003C\u003C err \u003C\u003C std::endl;\n        return false;\n    }\n    \n    \u002F\u002F STEP 3: Set resolution and subscribe\n    videoHelper->setRawDataResolution(ZoomSDKResolution_720P);\n    err = videoHelper->subscribe(userId, RAW_DATA_TYPE_VIDEO);\n    if (err != SDKERR_SUCCESS) {\n        std::cout \u003C\u003C \"Subscribe failed: \" \u003C\u003C err \u003C\u003C std::endl;\n        return false;\n    }\n    \n    std::cout \u003C\u003C \"Video capture started! Frames arrive in onRawDataFrameReceived()\" \u003C\u003C std::endl;\n    return true;\n}\n",[3062],{"type":50,"tag":353,"props":3063,"children":3064},{"__ignoreMap":544},[3065,3072,3079,3087,3095,3108,3116,3123,3131,3139,3146,3154,3162,3170,3178,3185,3193,3201,3209,3216,3223,3230,3238,3245,3253,3261,3268,3276,3284,3292,3300,3307,3314,3321,3329,3337,3345,3352,3360,3367,3374,3381,3389,3396],{"type":50,"tag":550,"props":3066,"children":3067},{"class":552,"line":553},[3068],{"type":50,"tag":550,"props":3069,"children":3070},{},[3071],{"type":55,"value":1582},{"type":50,"tag":550,"props":3073,"children":3074},{"class":552,"line":562},[3075],{"type":50,"tag":550,"props":3076,"children":3077},{},[3078],{"type":55,"value":1590},{"type":50,"tag":550,"props":3080,"children":3081},{"class":552,"line":571},[3082],{"type":50,"tag":550,"props":3083,"children":3084},{},[3085],{"type":55,"value":3086},"#include \u003Crawdata\u002Fzoom_rawdata_api.h>\n",{"type":50,"tag":550,"props":3088,"children":3089},{"class":552,"line":580},[3090],{"type":50,"tag":550,"props":3091,"children":3092},{},[3093],{"type":55,"value":3094},"#include \u003Crawdata\u002Frawdata_renderer_interface.h>\n",{"type":50,"tag":550,"props":3096,"children":3097},{"class":552,"line":589},[3098,3103],{"type":50,"tag":550,"props":3099,"children":3100},{},[3101],{"type":55,"value":3102},"#include \u003Czoom_sdk_raw_data_def.h>",{"type":50,"tag":550,"props":3104,"children":3105},{},[3106],{"type":55,"value":3107},"  \u002F\u002F REQUIRED for YUVRawDataI420\n",{"type":50,"tag":550,"props":3109,"children":3110},{"class":552,"line":653},[3111],{"type":50,"tag":550,"props":3112,"children":3113},{},[3114],{"type":55,"value":3115},"#include \"ZoomSDKRendererDelegate.h\"\n",{"type":50,"tag":550,"props":3117,"children":3118},{"class":552,"line":661},[3119],{"type":50,"tag":550,"props":3120,"children":3121},{"emptyLinePlaceholder":993},[3122],{"type":55,"value":996},{"type":50,"tag":550,"props":3124,"children":3125},{"class":552,"line":669},[3126],{"type":50,"tag":550,"props":3127,"children":3128},{},[3129],{"type":55,"value":3130},"IZoomSDKRenderer* videoHelper = nullptr;\n",{"type":50,"tag":550,"props":3132,"children":3133},{"class":552,"line":678},[3134],{"type":50,"tag":550,"props":3135,"children":3136},{},[3137],{"type":55,"value":3138},"ZoomSDKRendererDelegate* videoSource = new ZoomSDKRendererDelegate();\n",{"type":50,"tag":550,"props":3140,"children":3141},{"class":552,"line":686},[3142],{"type":50,"tag":550,"props":3143,"children":3144},{"emptyLinePlaceholder":993},[3145],{"type":55,"value":996},{"type":50,"tag":550,"props":3147,"children":3148},{"class":552,"line":1654},[3149],{"type":50,"tag":550,"props":3150,"children":3151},{},[3152],{"type":55,"value":3153},"bool StartVideoCapture(uint32_t userId) {\n",{"type":50,"tag":550,"props":3155,"children":3156},{"class":552,"line":1663},[3157],{"type":50,"tag":550,"props":3158,"children":3159},{},[3160],{"type":55,"value":3161},"    \u002F\u002F STEP 1: Start raw recording FIRST (required!)\n",{"type":50,"tag":550,"props":3163,"children":3164},{"class":552,"line":1672},[3165],{"type":50,"tag":550,"props":3166,"children":3167},{},[3168],{"type":55,"value":3169},"    IMeetingRecordingController* recordCtrl = \n",{"type":50,"tag":550,"props":3171,"children":3172},{"class":552,"line":1681},[3173],{"type":50,"tag":550,"props":3174,"children":3175},{},[3176],{"type":55,"value":3177},"        meetingService->GetMeetingRecordingController();\n",{"type":50,"tag":550,"props":3179,"children":3180},{"class":552,"line":1690},[3181],{"type":50,"tag":550,"props":3182,"children":3183},{},[3184],{"type":55,"value":1687},{"type":50,"tag":550,"props":3186,"children":3187},{"class":552,"line":1699},[3188],{"type":50,"tag":550,"props":3189,"children":3190},{},[3191],{"type":55,"value":3192},"    SDKError canStart = recordCtrl->CanStartRawRecording();\n",{"type":50,"tag":550,"props":3194,"children":3195},{"class":552,"line":1708},[3196],{"type":50,"tag":550,"props":3197,"children":3198},{},[3199],{"type":55,"value":3200},"    if (canStart != SDKERR_SUCCESS) {\n",{"type":50,"tag":550,"props":3202,"children":3203},{"class":552,"line":1717},[3204],{"type":50,"tag":550,"props":3205,"children":3206},{},[3207],{"type":55,"value":3208},"        std::cout \u003C\u003C \"Cannot start recording: \" \u003C\u003C canStart \u003C\u003C std::endl;\n",{"type":50,"tag":550,"props":3210,"children":3211},{"class":552,"line":1726},[3212],{"type":50,"tag":550,"props":3213,"children":3214},{},[3215],{"type":55,"value":1723},{"type":50,"tag":550,"props":3217,"children":3218},{"class":552,"line":1734},[3219],{"type":50,"tag":550,"props":3220,"children":3221},{},[3222],{"type":55,"value":1389},{"type":50,"tag":550,"props":3224,"children":3225},{"class":552,"line":1743},[3226],{"type":50,"tag":550,"props":3227,"children":3228},{},[3229],{"type":55,"value":1687},{"type":50,"tag":550,"props":3231,"children":3232},{"class":552,"line":1924},[3233],{"type":50,"tag":550,"props":3234,"children":3235},{},[3236],{"type":55,"value":3237},"    recordCtrl->StartRawRecording();\n",{"type":50,"tag":550,"props":3239,"children":3240},{"class":552,"line":1933},[3241],{"type":50,"tag":550,"props":3242,"children":3243},{},[3244],{"type":55,"value":1687},{"type":50,"tag":550,"props":3246,"children":3247},{"class":552,"line":1941},[3248],{"type":50,"tag":550,"props":3249,"children":3250},{},[3251],{"type":55,"value":3252},"    \u002F\u002F Wait for recording to initialize\n",{"type":50,"tag":550,"props":3254,"children":3255},{"class":552,"line":1950},[3256],{"type":50,"tag":550,"props":3257,"children":3258},{},[3259],{"type":55,"value":3260},"    std::this_thread::sleep_for(std::chrono::milliseconds(500));\n",{"type":50,"tag":550,"props":3262,"children":3263},{"class":552,"line":1958},[3264],{"type":50,"tag":550,"props":3265,"children":3266},{},[3267],{"type":55,"value":1687},{"type":50,"tag":550,"props":3269,"children":3270},{"class":552,"line":1967},[3271],{"type":50,"tag":550,"props":3272,"children":3273},{},[3274],{"type":55,"value":3275},"    \u002F\u002F STEP 2: Create renderer\n",{"type":50,"tag":550,"props":3277,"children":3278},{"class":552,"line":1975},[3279],{"type":50,"tag":550,"props":3280,"children":3281},{},[3282],{"type":55,"value":3283},"    SDKError err = createRenderer(&videoHelper, videoSource);\n",{"type":50,"tag":550,"props":3285,"children":3286},{"class":552,"line":1983},[3287],{"type":50,"tag":550,"props":3288,"children":3289},{},[3290],{"type":55,"value":3291},"    if (err != SDKERR_SUCCESS || !videoHelper) {\n",{"type":50,"tag":550,"props":3293,"children":3294},{"class":552,"line":1991},[3295],{"type":50,"tag":550,"props":3296,"children":3297},{},[3298],{"type":55,"value":3299},"        std::cout \u003C\u003C \"createRenderer failed: \" \u003C\u003C err \u003C\u003C std::endl;\n",{"type":50,"tag":550,"props":3301,"children":3302},{"class":552,"line":2000},[3303],{"type":50,"tag":550,"props":3304,"children":3305},{},[3306],{"type":55,"value":1723},{"type":50,"tag":550,"props":3308,"children":3309},{"class":552,"line":2009},[3310],{"type":50,"tag":550,"props":3311,"children":3312},{},[3313],{"type":55,"value":1389},{"type":50,"tag":550,"props":3315,"children":3316},{"class":552,"line":2017},[3317],{"type":50,"tag":550,"props":3318,"children":3319},{},[3320],{"type":55,"value":1687},{"type":50,"tag":550,"props":3322,"children":3323},{"class":552,"line":2025},[3324],{"type":50,"tag":550,"props":3325,"children":3326},{},[3327],{"type":55,"value":3328},"    \u002F\u002F STEP 3: Set resolution and subscribe\n",{"type":50,"tag":550,"props":3330,"children":3331},{"class":552,"line":2582},[3332],{"type":50,"tag":550,"props":3333,"children":3334},{},[3335],{"type":55,"value":3336},"    videoHelper->setRawDataResolution(ZoomSDKResolution_720P);\n",{"type":50,"tag":550,"props":3338,"children":3339},{"class":552,"line":2591},[3340],{"type":50,"tag":550,"props":3341,"children":3342},{},[3343],{"type":55,"value":3344},"    err = videoHelper->subscribe(userId, RAW_DATA_TYPE_VIDEO);\n",{"type":50,"tag":550,"props":3346,"children":3347},{"class":552,"line":2600},[3348],{"type":50,"tag":550,"props":3349,"children":3350},{},[3351],{"type":55,"value":1705},{"type":50,"tag":550,"props":3353,"children":3354},{"class":552,"line":2609},[3355],{"type":50,"tag":550,"props":3356,"children":3357},{},[3358],{"type":55,"value":3359},"        std::cout \u003C\u003C \"Subscribe failed: \" \u003C\u003C err \u003C\u003C std::endl;\n",{"type":50,"tag":550,"props":3361,"children":3362},{"class":552,"line":2617},[3363],{"type":50,"tag":550,"props":3364,"children":3365},{},[3366],{"type":55,"value":1723},{"type":50,"tag":550,"props":3368,"children":3369},{"class":552,"line":2626},[3370],{"type":50,"tag":550,"props":3371,"children":3372},{},[3373],{"type":55,"value":1389},{"type":50,"tag":550,"props":3375,"children":3376},{"class":552,"line":2634},[3377],{"type":50,"tag":550,"props":3378,"children":3379},{},[3380],{"type":55,"value":1687},{"type":50,"tag":550,"props":3382,"children":3383},{"class":552,"line":2643},[3384],{"type":50,"tag":550,"props":3385,"children":3386},{},[3387],{"type":55,"value":3388},"    std::cout \u003C\u003C \"Video capture started! Frames arrive in onRawDataFrameReceived()\" \u003C\u003C std::endl;\n",{"type":50,"tag":550,"props":3390,"children":3391},{"class":552,"line":2651},[3392],{"type":50,"tag":550,"props":3393,"children":3394},{},[3395],{"type":55,"value":1740},{"type":50,"tag":550,"props":3397,"children":3398},{"class":552,"line":2659},[3399],{"type":50,"tag":550,"props":3400,"children":3401},{},[3402],{"type":55,"value":1283},{"type":50,"tag":58,"props":3404,"children":3405},{},[3406],{"type":50,"tag":74,"props":3407,"children":3408},{},[3409],{"type":55,"value":3410},"ZoomSDKRendererDelegate.h:",{"type":50,"tag":539,"props":3412,"children":3414},{"className":1335,"code":3413,"language":1337,"meta":544,"style":544},"#include \u003Cwindows.h>\n#include \u003Ccstdint>\n#include \u003Crawdata\u002Frawdata_renderer_interface.h>\n#include \u003Czoom_sdk_raw_data_def.h>\n#include \u003Cfstream>\n#include \u003Ciostream>\n\nusing namespace ZOOM_SDK_NAMESPACE;\n\nclass ZoomSDKRendererDelegate : public IZoomSDKRendererDelegate {\npublic:\n    void onRawDataFrameReceived(YUVRawDataI420* data) override {\n        if (!data) return;\n        \n        \u002F\u002F YUV420 (I420) format: Y plane + U plane + V plane\n        int width = data->GetStreamWidth();\n        int height = data->GetStreamHeight();\n        \n        \u002F\u002F Calculate buffer sizes\n        \u002F\u002F Y = full resolution, U\u002FV = quarter resolution each\n        size_t ySize = width * height;\n        size_t uvSize = ySize \u002F 4;  \u002F\u002F (width\u002F2) * (height\u002F2)\n        \n        \u002F\u002F Total size: width * height * 1.5 bytes\n        \n        \u002F\u002F Save to file (playback: ffplay -f rawvideo -pixel_format yuv420p -video_size 1280x720 output.yuv)\n        std::ofstream outputFile(\"output.yuv\", std::ios::binary | std::ios::app);\n        outputFile.write(data->GetYBuffer(), ySize);    \u002F\u002F Brightness\n        outputFile.write(data->GetUBuffer(), uvSize);   \u002F\u002F Blue-difference\n        outputFile.write(data->GetVBuffer(), uvSize);   \u002F\u002F Red-difference\n        outputFile.close();\n    }\n    \n    void onRawDataStatusChanged(RawDataStatus status) override {\n        std::cout \u003C\u003C \"Raw data status: \" \u003C\u003C status \u003C\u003C std::endl;\n    }\n    \n    void onRendererBeDestroyed() override {\n        std::cout \u003C\u003C \"Renderer destroyed\" \u003C\u003C std::endl;\n    }\n};\n",[3415],{"type":50,"tag":353,"props":3416,"children":3417},{"__ignoreMap":544},[3418,3425,3432,3439,3447,3455,3462,3469,3476,3483,3491,3498,3506,3514,3522,3530,3538,3546,3553,3561,3569,3577,3585,3592,3600,3607,3615,3623,3631,3639,3647,3655,3662,3669,3677,3685,3692,3699,3707,3715,3722],{"type":50,"tag":550,"props":3419,"children":3420},{"class":552,"line":553},[3421],{"type":50,"tag":550,"props":3422,"children":3423},{},[3424],{"type":55,"value":1582},{"type":50,"tag":550,"props":3426,"children":3427},{"class":552,"line":562},[3428],{"type":50,"tag":550,"props":3429,"children":3430},{},[3431],{"type":55,"value":1590},{"type":50,"tag":550,"props":3433,"children":3434},{"class":552,"line":571},[3435],{"type":50,"tag":550,"props":3436,"children":3437},{},[3438],{"type":55,"value":3094},{"type":50,"tag":550,"props":3440,"children":3441},{"class":552,"line":580},[3442],{"type":50,"tag":550,"props":3443,"children":3444},{},[3445],{"type":55,"value":3446},"#include \u003Czoom_sdk_raw_data_def.h>\n",{"type":50,"tag":550,"props":3448,"children":3449},{"class":552,"line":589},[3450],{"type":50,"tag":550,"props":3451,"children":3452},{},[3453],{"type":55,"value":3454},"#include \u003Cfstream>\n",{"type":50,"tag":550,"props":3456,"children":3457},{"class":552,"line":653},[3458],{"type":50,"tag":550,"props":3459,"children":3460},{},[3461],{"type":55,"value":2074},{"type":50,"tag":550,"props":3463,"children":3464},{"class":552,"line":661},[3465],{"type":50,"tag":550,"props":3466,"children":3467},{"emptyLinePlaceholder":993},[3468],{"type":55,"value":996},{"type":50,"tag":550,"props":3470,"children":3471},{"class":552,"line":669},[3472],{"type":50,"tag":550,"props":3473,"children":3474},{},[3475],{"type":55,"value":1612},{"type":50,"tag":550,"props":3477,"children":3478},{"class":552,"line":678},[3479],{"type":50,"tag":550,"props":3480,"children":3481},{"emptyLinePlaceholder":993},[3482],{"type":55,"value":996},{"type":50,"tag":550,"props":3484,"children":3485},{"class":552,"line":686},[3486],{"type":50,"tag":550,"props":3487,"children":3488},{},[3489],{"type":55,"value":3490},"class ZoomSDKRendererDelegate : public IZoomSDKRendererDelegate {\n",{"type":50,"tag":550,"props":3492,"children":3493},{"class":552,"line":1654},[3494],{"type":50,"tag":550,"props":3495,"children":3496},{},[3497],{"type":55,"value":2111},{"type":50,"tag":550,"props":3499,"children":3500},{"class":552,"line":1663},[3501],{"type":50,"tag":550,"props":3502,"children":3503},{},[3504],{"type":55,"value":3505},"    void onRawDataFrameReceived(YUVRawDataI420* data) override {\n",{"type":50,"tag":550,"props":3507,"children":3508},{"class":552,"line":1672},[3509],{"type":50,"tag":550,"props":3510,"children":3511},{},[3512],{"type":55,"value":3513},"        if (!data) return;\n",{"type":50,"tag":550,"props":3515,"children":3516},{"class":552,"line":1681},[3517],{"type":50,"tag":550,"props":3518,"children":3519},{},[3520],{"type":55,"value":3521},"        \n",{"type":50,"tag":550,"props":3523,"children":3524},{"class":552,"line":1690},[3525],{"type":50,"tag":550,"props":3526,"children":3527},{},[3528],{"type":55,"value":3529},"        \u002F\u002F YUV420 (I420) format: Y plane + U plane + V plane\n",{"type":50,"tag":550,"props":3531,"children":3532},{"class":552,"line":1699},[3533],{"type":50,"tag":550,"props":3534,"children":3535},{},[3536],{"type":55,"value":3537},"        int width = data->GetStreamWidth();\n",{"type":50,"tag":550,"props":3539,"children":3540},{"class":552,"line":1708},[3541],{"type":50,"tag":550,"props":3542,"children":3543},{},[3544],{"type":55,"value":3545},"        int height = data->GetStreamHeight();\n",{"type":50,"tag":550,"props":3547,"children":3548},{"class":552,"line":1717},[3549],{"type":50,"tag":550,"props":3550,"children":3551},{},[3552],{"type":55,"value":3521},{"type":50,"tag":550,"props":3554,"children":3555},{"class":552,"line":1726},[3556],{"type":50,"tag":550,"props":3557,"children":3558},{},[3559],{"type":55,"value":3560},"        \u002F\u002F Calculate buffer sizes\n",{"type":50,"tag":550,"props":3562,"children":3563},{"class":552,"line":1734},[3564],{"type":50,"tag":550,"props":3565,"children":3566},{},[3567],{"type":55,"value":3568},"        \u002F\u002F Y = full resolution, U\u002FV = quarter resolution each\n",{"type":50,"tag":550,"props":3570,"children":3571},{"class":552,"line":1743},[3572],{"type":50,"tag":550,"props":3573,"children":3574},{},[3575],{"type":55,"value":3576},"        size_t ySize = width * height;\n",{"type":50,"tag":550,"props":3578,"children":3579},{"class":552,"line":1924},[3580],{"type":50,"tag":550,"props":3581,"children":3582},{},[3583],{"type":55,"value":3584},"        size_t uvSize = ySize \u002F 4;  \u002F\u002F (width\u002F2) * (height\u002F2)\n",{"type":50,"tag":550,"props":3586,"children":3587},{"class":552,"line":1933},[3588],{"type":50,"tag":550,"props":3589,"children":3590},{},[3591],{"type":55,"value":3521},{"type":50,"tag":550,"props":3593,"children":3594},{"class":552,"line":1941},[3595],{"type":50,"tag":550,"props":3596,"children":3597},{},[3598],{"type":55,"value":3599},"        \u002F\u002F Total size: width * height * 1.5 bytes\n",{"type":50,"tag":550,"props":3601,"children":3602},{"class":552,"line":1950},[3603],{"type":50,"tag":550,"props":3604,"children":3605},{},[3606],{"type":55,"value":3521},{"type":50,"tag":550,"props":3608,"children":3609},{"class":552,"line":1958},[3610],{"type":50,"tag":550,"props":3611,"children":3612},{},[3613],{"type":55,"value":3614},"        \u002F\u002F Save to file (playback: ffplay -f rawvideo -pixel_format yuv420p -video_size 1280x720 output.yuv)\n",{"type":50,"tag":550,"props":3616,"children":3617},{"class":552,"line":1967},[3618],{"type":50,"tag":550,"props":3619,"children":3620},{},[3621],{"type":55,"value":3622},"        std::ofstream outputFile(\"output.yuv\", std::ios::binary | std::ios::app);\n",{"type":50,"tag":550,"props":3624,"children":3625},{"class":552,"line":1975},[3626],{"type":50,"tag":550,"props":3627,"children":3628},{},[3629],{"type":55,"value":3630},"        outputFile.write(data->GetYBuffer(), ySize);    \u002F\u002F Brightness\n",{"type":50,"tag":550,"props":3632,"children":3633},{"class":552,"line":1983},[3634],{"type":50,"tag":550,"props":3635,"children":3636},{},[3637],{"type":55,"value":3638},"        outputFile.write(data->GetUBuffer(), uvSize);   \u002F\u002F Blue-difference\n",{"type":50,"tag":550,"props":3640,"children":3641},{"class":552,"line":1991},[3642],{"type":50,"tag":550,"props":3643,"children":3644},{},[3645],{"type":55,"value":3646},"        outputFile.write(data->GetVBuffer(), uvSize);   \u002F\u002F Red-difference\n",{"type":50,"tag":550,"props":3648,"children":3649},{"class":552,"line":2000},[3650],{"type":50,"tag":550,"props":3651,"children":3652},{},[3653],{"type":55,"value":3654},"        outputFile.close();\n",{"type":50,"tag":550,"props":3656,"children":3657},{"class":552,"line":2009},[3658],{"type":50,"tag":550,"props":3659,"children":3660},{},[3661],{"type":55,"value":1389},{"type":50,"tag":550,"props":3663,"children":3664},{"class":552,"line":2017},[3665],{"type":50,"tag":550,"props":3666,"children":3667},{},[3668],{"type":55,"value":1687},{"type":50,"tag":550,"props":3670,"children":3671},{"class":552,"line":2025},[3672],{"type":50,"tag":550,"props":3673,"children":3674},{},[3675],{"type":55,"value":3676},"    void onRawDataStatusChanged(RawDataStatus status) override {\n",{"type":50,"tag":550,"props":3678,"children":3679},{"class":552,"line":2582},[3680],{"type":50,"tag":550,"props":3681,"children":3682},{},[3683],{"type":55,"value":3684},"        std::cout \u003C\u003C \"Raw data status: \" \u003C\u003C status \u003C\u003C std::endl;\n",{"type":50,"tag":550,"props":3686,"children":3687},{"class":552,"line":2591},[3688],{"type":50,"tag":550,"props":3689,"children":3690},{},[3691],{"type":55,"value":1389},{"type":50,"tag":550,"props":3693,"children":3694},{"class":552,"line":2600},[3695],{"type":50,"tag":550,"props":3696,"children":3697},{},[3698],{"type":55,"value":1687},{"type":50,"tag":550,"props":3700,"children":3701},{"class":552,"line":2609},[3702],{"type":50,"tag":550,"props":3703,"children":3704},{},[3705],{"type":55,"value":3706},"    void onRendererBeDestroyed() override {\n",{"type":50,"tag":550,"props":3708,"children":3709},{"class":552,"line":2617},[3710],{"type":50,"tag":550,"props":3711,"children":3712},{},[3713],{"type":55,"value":3714},"        std::cout \u003C\u003C \"Renderer destroyed\" \u003C\u003C std::endl;\n",{"type":50,"tag":550,"props":3716,"children":3717},{"class":552,"line":2626},[3718],{"type":50,"tag":550,"props":3719,"children":3720},{},[3721],{"type":55,"value":1389},{"type":50,"tag":550,"props":3723,"children":3724},{"class":552,"line":2634},[3725],{"type":50,"tag":550,"props":3726,"children":3727},{},[3728],{"type":55,"value":2291},{"type":50,"tag":58,"props":3730,"children":3731},{},[3732,3737,3738],{"type":50,"tag":74,"props":3733,"children":3734},{},[3735],{"type":55,"value":3736},"Complete video capture guide",{"type":55,"value":799},{"type":50,"tag":91,"props":3739,"children":3740},{"href":1451},[3741],{"type":55,"value":3742},"Raw Video Capture Guide",{"type":50,"tag":346,"props":3744,"children":3746},{"id":3745},"_5-subscribe-to-raw-audio",[3747],{"type":55,"value":3748},"5. Subscribe to Raw Audio",{"type":50,"tag":539,"props":3750,"children":3752},{"className":1335,"code":3751,"language":1337,"meta":544,"style":544},"#include \u003Crawdata\u002Frawdata_audio_helper_interface.h>\n\nclass ZoomSDKAudioRawDataDelegate : public IZoomSDKAudioRawDataDelegate {\npublic:\n    void onMixedAudioRawDataReceived(AudioRawData* data) override {\n        \u002F\u002F Process PCM audio (mixed from all participants)\n        std::ofstream pcmFile(\"audio.pcm\", std::ios::binary | std::ios::app);\n        pcmFile.write((char*)data->GetBuffer(), data->GetBufferLen());\n        pcmFile.close();\n    }\n    \n    void onOneWayAudioRawDataReceived(AudioRawData* data, uint32_t node_id) override {\n        \u002F\u002F Process audio from specific participant\n    }\n};\n\n\u002F\u002F Subscribe to audio\nIZoomSDKAudioRawDataHelper* audioHelper = GetAudioRawdataHelper();\naudioHelper->subscribe(new ZoomSDKAudioRawDataDelegate());\n",[3753],{"type":50,"tag":353,"props":3754,"children":3755},{"__ignoreMap":544},[3756,3764,3771,3779,3786,3794,3802,3810,3818,3826,3833,3840,3848,3856,3863,3870,3877,3885,3893],{"type":50,"tag":550,"props":3757,"children":3758},{"class":552,"line":553},[3759],{"type":50,"tag":550,"props":3760,"children":3761},{},[3762],{"type":55,"value":3763},"#include \u003Crawdata\u002Frawdata_audio_helper_interface.h>\n",{"type":50,"tag":550,"props":3765,"children":3766},{"class":552,"line":562},[3767],{"type":50,"tag":550,"props":3768,"children":3769},{"emptyLinePlaceholder":993},[3770],{"type":55,"value":996},{"type":50,"tag":550,"props":3772,"children":3773},{"class":552,"line":571},[3774],{"type":50,"tag":550,"props":3775,"children":3776},{},[3777],{"type":55,"value":3778},"class ZoomSDKAudioRawDataDelegate : public IZoomSDKAudioRawDataDelegate {\n",{"type":50,"tag":550,"props":3780,"children":3781},{"class":552,"line":580},[3782],{"type":50,"tag":550,"props":3783,"children":3784},{},[3785],{"type":55,"value":2111},{"type":50,"tag":550,"props":3787,"children":3788},{"class":552,"line":589},[3789],{"type":50,"tag":550,"props":3790,"children":3791},{},[3792],{"type":55,"value":3793},"    void onMixedAudioRawDataReceived(AudioRawData* data) override {\n",{"type":50,"tag":550,"props":3795,"children":3796},{"class":552,"line":653},[3797],{"type":50,"tag":550,"props":3798,"children":3799},{},[3800],{"type":55,"value":3801},"        \u002F\u002F Process PCM audio (mixed from all participants)\n",{"type":50,"tag":550,"props":3803,"children":3804},{"class":552,"line":661},[3805],{"type":50,"tag":550,"props":3806,"children":3807},{},[3808],{"type":55,"value":3809},"        std::ofstream pcmFile(\"audio.pcm\", std::ios::binary | std::ios::app);\n",{"type":50,"tag":550,"props":3811,"children":3812},{"class":552,"line":669},[3813],{"type":50,"tag":550,"props":3814,"children":3815},{},[3816],{"type":55,"value":3817},"        pcmFile.write((char*)data->GetBuffer(), data->GetBufferLen());\n",{"type":50,"tag":550,"props":3819,"children":3820},{"class":552,"line":678},[3821],{"type":50,"tag":550,"props":3822,"children":3823},{},[3824],{"type":55,"value":3825},"        pcmFile.close();\n",{"type":50,"tag":550,"props":3827,"children":3828},{"class":552,"line":686},[3829],{"type":50,"tag":550,"props":3830,"children":3831},{},[3832],{"type":55,"value":1389},{"type":50,"tag":550,"props":3834,"children":3835},{"class":552,"line":1654},[3836],{"type":50,"tag":550,"props":3837,"children":3838},{},[3839],{"type":55,"value":1687},{"type":50,"tag":550,"props":3841,"children":3842},{"class":552,"line":1663},[3843],{"type":50,"tag":550,"props":3844,"children":3845},{},[3846],{"type":55,"value":3847},"    void onOneWayAudioRawDataReceived(AudioRawData* data, uint32_t node_id) override {\n",{"type":50,"tag":550,"props":3849,"children":3850},{"class":552,"line":1672},[3851],{"type":50,"tag":550,"props":3852,"children":3853},{},[3854],{"type":55,"value":3855},"        \u002F\u002F Process audio from specific participant\n",{"type":50,"tag":550,"props":3857,"children":3858},{"class":552,"line":1681},[3859],{"type":50,"tag":550,"props":3860,"children":3861},{},[3862],{"type":55,"value":1389},{"type":50,"tag":550,"props":3864,"children":3865},{"class":552,"line":1690},[3866],{"type":50,"tag":550,"props":3867,"children":3868},{},[3869],{"type":55,"value":2291},{"type":50,"tag":550,"props":3871,"children":3872},{"class":552,"line":1699},[3873],{"type":50,"tag":550,"props":3874,"children":3875},{"emptyLinePlaceholder":993},[3876],{"type":55,"value":996},{"type":50,"tag":550,"props":3878,"children":3879},{"class":552,"line":1708},[3880],{"type":50,"tag":550,"props":3881,"children":3882},{},[3883],{"type":55,"value":3884},"\u002F\u002F Subscribe to audio\n",{"type":50,"tag":550,"props":3886,"children":3887},{"class":552,"line":1717},[3888],{"type":50,"tag":550,"props":3889,"children":3890},{},[3891],{"type":55,"value":3892},"IZoomSDKAudioRawDataHelper* audioHelper = GetAudioRawdataHelper();\n",{"type":50,"tag":550,"props":3894,"children":3895},{"class":552,"line":1726},[3896],{"type":50,"tag":550,"props":3897,"children":3898},{},[3899],{"type":55,"value":3900},"audioHelper->subscribe(new ZoomSDKAudioRawDataDelegate());\n",{"type":50,"tag":346,"props":3902,"children":3904},{"id":3903},"_6-main-message-loop-critical",[3905],{"type":55,"value":3906},"6. Main Message Loop (CRITICAL!)",{"type":50,"tag":58,"props":3908,"children":3909},{},[3910],{"type":50,"tag":74,"props":3911,"children":3912},{},[3913],{"type":55,"value":3914},"⚠️ WITHOUT THIS, CALLBACKS WON'T FIRE!",{"type":50,"tag":539,"props":3916,"children":3918},{"className":1335,"code":3917,"language":1337,"meta":544,"style":544},"#include \u003Cwindows.h>\n#include \u003Cthread>\n#include \u003Cchrono>\n\nint main() {\n    \u002F\u002F Initialize COM\n    CoInitialize(NULL);\n    \n    \u002F\u002F Load config and initialize\n    LoadConfig();\n    InitMeetingSDK();\n    AuthenticateSDK(sdk_jwt);\n    \n    \u002F\u002F CRITICAL: Windows message loop for SDK callbacks\n    \u002F\u002F SDK uses Windows message pump to dispatch callbacks\n    \u002F\u002F Without this, callbacks are queued but NEVER fire!\n    MSG msg;\n    while (!g_exit) {\n        \u002F\u002F Process all pending Windows messages\n        while (PeekMessage(&msg, NULL, 0, 0, PM_REMOVE)) {\n            if (msg.message == WM_QUIT) {\n                g_exit = true;\n                break;\n            }\n            TranslateMessage(&msg);\n            DispatchMessage(&msg);\n        }\n        \n        \u002F\u002F Small sleep to avoid busy-waiting\n        std::this_thread::sleep_for(std::chrono::milliseconds(100));\n    }\n    \n    \u002F\u002F Cleanup\n    CleanSDK();\n    CoUninitialize();\n    \n    return 0;\n}\n",[3919],{"type":50,"tag":353,"props":3920,"children":3921},{"__ignoreMap":544},[3922,3929,3937,3945,3952,3960,3968,3976,3983,3991,3999,4007,4015,4022,4030,4038,4046,4053,4061,4069,4077,4085,4093,4101,4109,4117,4125,4132,4139,4147,4155,4162,4169,4177,4185,4193,4200,4208],{"type":50,"tag":550,"props":3923,"children":3924},{"class":552,"line":553},[3925],{"type":50,"tag":550,"props":3926,"children":3927},{},[3928],{"type":55,"value":1582},{"type":50,"tag":550,"props":3930,"children":3931},{"class":552,"line":562},[3932],{"type":50,"tag":550,"props":3933,"children":3934},{},[3935],{"type":55,"value":3936},"#include \u003Cthread>\n",{"type":50,"tag":550,"props":3938,"children":3939},{"class":552,"line":571},[3940],{"type":50,"tag":550,"props":3941,"children":3942},{},[3943],{"type":55,"value":3944},"#include \u003Cchrono>\n",{"type":50,"tag":550,"props":3946,"children":3947},{"class":552,"line":580},[3948],{"type":50,"tag":550,"props":3949,"children":3950},{"emptyLinePlaceholder":993},[3951],{"type":55,"value":996},{"type":50,"tag":550,"props":3953,"children":3954},{"class":552,"line":589},[3955],{"type":50,"tag":550,"props":3956,"children":3957},{},[3958],{"type":55,"value":3959},"int main() {\n",{"type":50,"tag":550,"props":3961,"children":3962},{"class":552,"line":653},[3963],{"type":50,"tag":550,"props":3964,"children":3965},{},[3966],{"type":55,"value":3967},"    \u002F\u002F Initialize COM\n",{"type":50,"tag":550,"props":3969,"children":3970},{"class":552,"line":661},[3971],{"type":50,"tag":550,"props":3972,"children":3973},{},[3974],{"type":55,"value":3975},"    CoInitialize(NULL);\n",{"type":50,"tag":550,"props":3977,"children":3978},{"class":552,"line":669},[3979],{"type":50,"tag":550,"props":3980,"children":3981},{},[3982],{"type":55,"value":1687},{"type":50,"tag":550,"props":3984,"children":3985},{"class":552,"line":678},[3986],{"type":50,"tag":550,"props":3987,"children":3988},{},[3989],{"type":55,"value":3990},"    \u002F\u002F Load config and initialize\n",{"type":50,"tag":550,"props":3992,"children":3993},{"class":552,"line":686},[3994],{"type":50,"tag":550,"props":3995,"children":3996},{},[3997],{"type":55,"value":3998},"    LoadConfig();\n",{"type":50,"tag":550,"props":4000,"children":4001},{"class":552,"line":1654},[4002],{"type":50,"tag":550,"props":4003,"children":4004},{},[4005],{"type":55,"value":4006},"    InitMeetingSDK();\n",{"type":50,"tag":550,"props":4008,"children":4009},{"class":552,"line":1663},[4010],{"type":50,"tag":550,"props":4011,"children":4012},{},[4013],{"type":55,"value":4014},"    AuthenticateSDK(sdk_jwt);\n",{"type":50,"tag":550,"props":4016,"children":4017},{"class":552,"line":1672},[4018],{"type":50,"tag":550,"props":4019,"children":4020},{},[4021],{"type":55,"value":1687},{"type":50,"tag":550,"props":4023,"children":4024},{"class":552,"line":1681},[4025],{"type":50,"tag":550,"props":4026,"children":4027},{},[4028],{"type":55,"value":4029},"    \u002F\u002F CRITICAL: Windows message loop for SDK callbacks\n",{"type":50,"tag":550,"props":4031,"children":4032},{"class":552,"line":1690},[4033],{"type":50,"tag":550,"props":4034,"children":4035},{},[4036],{"type":55,"value":4037},"    \u002F\u002F SDK uses Windows message pump to dispatch callbacks\n",{"type":50,"tag":550,"props":4039,"children":4040},{"class":552,"line":1699},[4041],{"type":50,"tag":550,"props":4042,"children":4043},{},[4044],{"type":55,"value":4045},"    \u002F\u002F Without this, callbacks are queued but NEVER fire!\n",{"type":50,"tag":550,"props":4047,"children":4048},{"class":552,"line":1708},[4049],{"type":50,"tag":550,"props":4050,"children":4051},{},[4052],{"type":55,"value":1357},{"type":50,"tag":550,"props":4054,"children":4055},{"class":552,"line":1717},[4056],{"type":50,"tag":550,"props":4057,"children":4058},{},[4059],{"type":55,"value":4060},"    while (!g_exit) {\n",{"type":50,"tag":550,"props":4062,"children":4063},{"class":552,"line":1726},[4064],{"type":50,"tag":550,"props":4065,"children":4066},{},[4067],{"type":55,"value":4068},"        \u002F\u002F Process all pending Windows messages\n",{"type":50,"tag":550,"props":4070,"children":4071},{"class":552,"line":1734},[4072],{"type":50,"tag":550,"props":4073,"children":4074},{},[4075],{"type":55,"value":4076},"        while (PeekMessage(&msg, NULL, 0, 0, PM_REMOVE)) {\n",{"type":50,"tag":550,"props":4078,"children":4079},{"class":552,"line":1743},[4080],{"type":50,"tag":550,"props":4081,"children":4082},{},[4083],{"type":55,"value":4084},"            if (msg.message == WM_QUIT) {\n",{"type":50,"tag":550,"props":4086,"children":4087},{"class":552,"line":1924},[4088],{"type":50,"tag":550,"props":4089,"children":4090},{},[4091],{"type":55,"value":4092},"                g_exit = true;\n",{"type":50,"tag":550,"props":4094,"children":4095},{"class":552,"line":1933},[4096],{"type":50,"tag":550,"props":4097,"children":4098},{},[4099],{"type":55,"value":4100},"                break;\n",{"type":50,"tag":550,"props":4102,"children":4103},{"class":552,"line":1941},[4104],{"type":50,"tag":550,"props":4105,"children":4106},{},[4107],{"type":55,"value":4108},"            }\n",{"type":50,"tag":550,"props":4110,"children":4111},{"class":552,"line":1950},[4112],{"type":50,"tag":550,"props":4113,"children":4114},{},[4115],{"type":55,"value":4116},"            TranslateMessage(&msg);\n",{"type":50,"tag":550,"props":4118,"children":4119},{"class":552,"line":1958},[4120],{"type":50,"tag":550,"props":4121,"children":4122},{},[4123],{"type":55,"value":4124},"            DispatchMessage(&msg);\n",{"type":50,"tag":550,"props":4126,"children":4127},{"class":552,"line":1967},[4128],{"type":50,"tag":550,"props":4129,"children":4130},{},[4131],{"type":55,"value":2182},{"type":50,"tag":550,"props":4133,"children":4134},{"class":552,"line":1975},[4135],{"type":50,"tag":550,"props":4136,"children":4137},{},[4138],{"type":55,"value":3521},{"type":50,"tag":550,"props":4140,"children":4141},{"class":552,"line":1983},[4142],{"type":50,"tag":550,"props":4143,"children":4144},{},[4145],{"type":55,"value":4146},"        \u002F\u002F Small sleep to avoid busy-waiting\n",{"type":50,"tag":550,"props":4148,"children":4149},{"class":552,"line":1991},[4150],{"type":50,"tag":550,"props":4151,"children":4152},{},[4153],{"type":55,"value":4154},"        std::this_thread::sleep_for(std::chrono::milliseconds(100));\n",{"type":50,"tag":550,"props":4156,"children":4157},{"class":552,"line":2000},[4158],{"type":50,"tag":550,"props":4159,"children":4160},{},[4161],{"type":55,"value":1389},{"type":50,"tag":550,"props":4163,"children":4164},{"class":552,"line":2009},[4165],{"type":50,"tag":550,"props":4166,"children":4167},{},[4168],{"type":55,"value":1687},{"type":50,"tag":550,"props":4170,"children":4171},{"class":552,"line":2017},[4172],{"type":50,"tag":550,"props":4173,"children":4174},{},[4175],{"type":55,"value":4176},"    \u002F\u002F Cleanup\n",{"type":50,"tag":550,"props":4178,"children":4179},{"class":552,"line":2025},[4180],{"type":50,"tag":550,"props":4181,"children":4182},{},[4183],{"type":55,"value":4184},"    CleanSDK();\n",{"type":50,"tag":550,"props":4186,"children":4187},{"class":552,"line":2582},[4188],{"type":50,"tag":550,"props":4189,"children":4190},{},[4191],{"type":55,"value":4192},"    CoUninitialize();\n",{"type":50,"tag":550,"props":4194,"children":4195},{"class":552,"line":2591},[4196],{"type":50,"tag":550,"props":4197,"children":4198},{},[4199],{"type":55,"value":1687},{"type":50,"tag":550,"props":4201,"children":4202},{"class":552,"line":2600},[4203],{"type":50,"tag":550,"props":4204,"children":4205},{},[4206],{"type":55,"value":4207},"    return 0;\n",{"type":50,"tag":550,"props":4209,"children":4210},{"class":552,"line":2609},[4211],{"type":50,"tag":550,"props":4212,"children":4213},{},[4214],{"type":55,"value":1283},{"type":50,"tag":58,"props":4216,"children":4217},{},[4218,4223,4225,4231],{"type":50,"tag":74,"props":4219,"children":4220},{},[4221],{"type":55,"value":4222},"Why message loop is critical",{"type":55,"value":4224},": The SDK uses Windows COM\u002Fmessaging for async callbacks. Without ",{"type":50,"tag":353,"props":4226,"children":4228},{"className":4227},[],[4229],{"type":55,"value":4230},"PeekMessage()",{"type":55,"value":4232},", the SDK queues messages but they're never retrieved\u002Fdispatched, so callbacks never execute.",{"type":50,"tag":58,"props":4234,"children":4235},{},[4236,4241],{"type":50,"tag":74,"props":4237,"children":4238},{},[4239],{"type":55,"value":4240},"Symptoms without message loop",{"type":55,"value":872},{"type":50,"tag":136,"props":4243,"children":4244},{},[4245,4250,4255,4260],{"type":50,"tag":84,"props":4246,"children":4247},{},[4248],{"type":55,"value":4249},"Authentication timeout (even with valid JWT)",{"type":50,"tag":84,"props":4251,"children":4252},{},[4253],{"type":55,"value":4254},"Meeting join timeout",{"type":50,"tag":84,"props":4256,"children":4257},{},[4258],{"type":55,"value":4259},"No callback events fire",{"type":50,"tag":84,"props":4261,"children":4262},{},[4263],{"type":55,"value":4264},"Appears like network\u002Fauth issue but it's a message loop issue",{"type":50,"tag":58,"props":4266,"children":4267},{},[4268,4273,4274],{"type":50,"tag":74,"props":4269,"children":4270},{},[4271],{"type":55,"value":4272},"See detailed explanation",{"type":55,"value":799},{"type":50,"tag":91,"props":4275,"children":4276},{"href":121},[4277],{"type":55,"value":1414},{"type":50,"tag":64,"props":4279,"children":4281},{"id":4280},"common-issues-solutions",[4282],{"type":55,"value":4283},"Common Issues & Solutions",{"type":50,"tag":4285,"props":4286,"children":4287},"table",{},[4288,4307],{"type":50,"tag":4289,"props":4290,"children":4291},"thead",{},[4292],{"type":50,"tag":4293,"props":4294,"children":4295},"tr",{},[4296,4302],{"type":50,"tag":4297,"props":4298,"children":4299},"th",{},[4300],{"type":55,"value":4301},"Issue",{"type":50,"tag":4297,"props":4303,"children":4304},{},[4305],{"type":55,"value":4306},"Solution",{"type":50,"tag":4308,"props":4309,"children":4310},"tbody",{},[4311,4333,4367,4387,4414,4434],{"type":50,"tag":4293,"props":4312,"children":4313},{},[4314,4323],{"type":50,"tag":4315,"props":4316,"children":4317},"td",{},[4318],{"type":50,"tag":74,"props":4319,"children":4320},{},[4321],{"type":55,"value":4322},"Callbacks don't fire \u002F Auth timeout",{"type":50,"tag":4315,"props":4324,"children":4325},{},[4326,4328],{"type":55,"value":4327},"Add Windows message loop → ",{"type":50,"tag":91,"props":4329,"children":4330},{"href":121},[4331],{"type":55,"value":4332},"Guide",{"type":50,"tag":4293,"props":4334,"children":4335},{},[4336,4358],{"type":50,"tag":4315,"props":4337,"children":4338},{},[4339],{"type":50,"tag":74,"props":4340,"children":4341},{},[4342,4348,4350,4356],{"type":50,"tag":353,"props":4343,"children":4345},{"className":4344},[],[4346],{"type":55,"value":4347},"uint32_t",{"type":55,"value":4349}," \u002F ",{"type":50,"tag":353,"props":4351,"children":4353},{"className":4352},[],[4354],{"type":55,"value":4355},"AudioType",{"type":55,"value":4357}," errors",{"type":50,"tag":4315,"props":4359,"children":4360},{},[4361,4363],{"type":55,"value":4362},"Fix include order → ",{"type":50,"tag":91,"props":4364,"children":4365},{"href":201},[4366],{"type":55,"value":4332},{"type":50,"tag":4293,"props":4368,"children":4369},{},[4370,4378],{"type":50,"tag":4315,"props":4371,"children":4372},{},[4373],{"type":50,"tag":74,"props":4374,"children":4375},{},[4376],{"type":55,"value":4377},"Abstract class error",{"type":50,"tag":4315,"props":4379,"children":4380},{},[4381,4383],{"type":55,"value":4382},"Implement all virtual methods → ",{"type":50,"tag":91,"props":4384,"children":4385},{"href":177},[4386],{"type":55,"value":4332},{"type":50,"tag":4293,"props":4388,"children":4389},{},[4390,4405],{"type":50,"tag":4315,"props":4391,"children":4392},{},[4393],{"type":50,"tag":74,"props":4394,"children":4395},{},[4396,4398,4403],{"type":55,"value":4397},"How to implement ",{"type":50,"tag":550,"props":4399,"children":4400},{},[4401],{"type":55,"value":4402},"feature",{"type":55,"value":4404},"?",{"type":50,"tag":4315,"props":4406,"children":4407},{},[4408,4410],{"type":55,"value":4409},"Follow universal pattern → ",{"type":50,"tag":91,"props":4411,"children":4412},{"href":93},[4413],{"type":55,"value":4332},{"type":50,"tag":4293,"props":4415,"children":4416},{},[4417,4425],{"type":50,"tag":4315,"props":4418,"children":4419},{},[4420],{"type":50,"tag":74,"props":4421,"children":4422},{},[4423],{"type":55,"value":4424},"Authentication fails",{"type":50,"tag":4315,"props":4426,"children":4427},{},[4428,4430],{"type":55,"value":4429},"Check JWT token & error codes → ",{"type":50,"tag":91,"props":4431,"children":4432},{"href":221},[4433],{"type":55,"value":4332},{"type":50,"tag":4293,"props":4435,"children":4436},{},[4437,4445],{"type":50,"tag":4315,"props":4438,"children":4439},{},[4440],{"type":50,"tag":74,"props":4441,"children":4442},{},[4443],{"type":55,"value":4444},"No video frames received",{"type":50,"tag":4315,"props":4446,"children":4447},{},[4448,4450],{"type":55,"value":4449},"Call StartRawRecording() first → ",{"type":50,"tag":91,"props":4451,"children":4452},{"href":1451},[4453],{"type":55,"value":4332},{"type":50,"tag":58,"props":4455,"children":4456},{},[4457,4462,4463],{"type":50,"tag":74,"props":4458,"children":4459},{},[4460],{"type":55,"value":4461},"Complete troubleshooting",{"type":55,"value":799},{"type":50,"tag":91,"props":4464,"children":4465},{"href":221},[4466],{"type":55,"value":4467},"Common Issues Guide",{"type":50,"tag":64,"props":4469,"children":4471},{"id":4470},"how-to-implement-any-feature",[4472],{"type":55,"value":4473},"How to Implement Any Feature",{"type":50,"tag":58,"props":4475,"children":4476},{},[4477,4479,4484],{"type":55,"value":4478},"The SDK has ",{"type":50,"tag":74,"props":4480,"children":4481},{},[4482],{"type":55,"value":4483},"35+ feature controllers",{"type":55,"value":4485}," (audio, video, chat, recording, participants, screen sharing, breakout rooms, webinars, Q&A, polling, whiteboard, captions, AI companion, etc.).",{"type":50,"tag":58,"props":4487,"children":4488},{},[4489],{"type":50,"tag":74,"props":4490,"children":4491},{},[4492],{"type":55,"value":4493},"Universal pattern that works for ALL features:",{"type":50,"tag":80,"props":4495,"children":4496},{},[4497,4538,4600],{"type":50,"tag":84,"props":4498,"children":4499},{},[4500,4505,4507],{"type":50,"tag":74,"props":4501,"children":4502},{},[4503],{"type":55,"value":4504},"Get the controller",{"type":55,"value":4506}," (singleton):",{"type":50,"tag":539,"props":4508,"children":4510},{"className":1335,"code":4509,"language":1337,"meta":544,"style":544},"IMeetingAudioController* audioCtrl = meetingService->GetMeetingAudioController();\nIMeetingChatController* chatCtrl = meetingService->GetMeetingChatController();\n\u002F\u002F ... 33 more controllers available\n",[4511],{"type":50,"tag":353,"props":4512,"children":4513},{"__ignoreMap":544},[4514,4522,4530],{"type":50,"tag":550,"props":4515,"children":4516},{"class":552,"line":553},[4517],{"type":50,"tag":550,"props":4518,"children":4519},{},[4520],{"type":55,"value":4521},"IMeetingAudioController* audioCtrl = meetingService->GetMeetingAudioController();\n",{"type":50,"tag":550,"props":4523,"children":4524},{"class":552,"line":562},[4525],{"type":50,"tag":550,"props":4526,"children":4527},{},[4528],{"type":55,"value":4529},"IMeetingChatController* chatCtrl = meetingService->GetMeetingChatController();\n",{"type":50,"tag":550,"props":4531,"children":4532},{"class":552,"line":571},[4533],{"type":50,"tag":550,"props":4534,"children":4535},{},[4536],{"type":55,"value":4537},"\u002F\u002F ... 33 more controllers available\n",{"type":50,"tag":84,"props":4539,"children":4540},{},[4541,4545,4547],{"type":50,"tag":74,"props":4542,"children":4543},{},[4544],{"type":55,"value":797},{"type":55,"value":4546}," (observer pattern):",{"type":50,"tag":539,"props":4548,"children":4550},{"className":1335,"code":4549,"language":1337,"meta":544,"style":544},"class MyAudioListener : public IMeetingAudioCtrlEvent {\n    void onUserAudioStatusChange(IList\u003CIUserAudioStatus*>* lst) override {\n        \u002F\u002F React to audio events\n    }\n    \u002F\u002F ... implement all required methods\n};\n",[4551],{"type":50,"tag":353,"props":4552,"children":4553},{"__ignoreMap":544},[4554,4562,4570,4578,4585,4593],{"type":50,"tag":550,"props":4555,"children":4556},{"class":552,"line":553},[4557],{"type":50,"tag":550,"props":4558,"children":4559},{},[4560],{"type":55,"value":4561},"class MyAudioListener : public IMeetingAudioCtrlEvent {\n",{"type":50,"tag":550,"props":4563,"children":4564},{"class":552,"line":562},[4565],{"type":50,"tag":550,"props":4566,"children":4567},{},[4568],{"type":55,"value":4569},"    void onUserAudioStatusChange(IList\u003CIUserAudioStatus*>* lst) override {\n",{"type":50,"tag":550,"props":4571,"children":4572},{"class":552,"line":571},[4573],{"type":50,"tag":550,"props":4574,"children":4575},{},[4576],{"type":55,"value":4577},"        \u002F\u002F React to audio events\n",{"type":50,"tag":550,"props":4579,"children":4580},{"class":552,"line":580},[4581],{"type":50,"tag":550,"props":4582,"children":4583},{},[4584],{"type":55,"value":1389},{"type":50,"tag":550,"props":4586,"children":4587},{"class":552,"line":589},[4588],{"type":50,"tag":550,"props":4589,"children":4590},{},[4591],{"type":55,"value":4592},"    \u002F\u002F ... implement all required methods\n",{"type":50,"tag":550,"props":4594,"children":4595},{"class":552,"line":653},[4596],{"type":50,"tag":550,"props":4597,"children":4598},{},[4599],{"type":55,"value":2291},{"type":50,"tag":84,"props":4601,"children":4602},{},[4603,4607,4608],{"type":50,"tag":74,"props":4604,"children":4605},{},[4606],{"type":55,"value":813},{"type":55,"value":872},{"type":50,"tag":539,"props":4609,"children":4611},{"className":1335,"code":4610,"language":1337,"meta":544,"style":544},"audioCtrl->SetEvent(new MyAudioListener());\naudioCtrl->MuteAudio(userId, true);  \u002F\u002F Use feature\n",[4612],{"type":50,"tag":353,"props":4613,"children":4614},{"__ignoreMap":544},[4615,4623],{"type":50,"tag":550,"props":4616,"children":4617},{"class":552,"line":553},[4618],{"type":50,"tag":550,"props":4619,"children":4620},{},[4621],{"type":55,"value":4622},"audioCtrl->SetEvent(new MyAudioListener());\n",{"type":50,"tag":550,"props":4624,"children":4625},{"class":552,"line":562},[4626],{"type":50,"tag":550,"props":4627,"children":4628},{},[4629],{"type":55,"value":4630},"audioCtrl->MuteAudio(userId, true);  \u002F\u002F Use feature\n",{"type":50,"tag":58,"props":4632,"children":4633},{},[4634,4639,4640],{"type":50,"tag":74,"props":4635,"children":4636},{},[4637],{"type":55,"value":4638},"Complete guide with examples",{"type":55,"value":799},{"type":50,"tag":91,"props":4641,"children":4642},{"href":93},[4643],{"type":55,"value":96},{"type":50,"tag":64,"props":4645,"children":4647},{"id":4646},"available-examples",[4648],{"type":55,"value":4649},"Available Examples",{"type":50,"tag":4285,"props":4651,"children":4652},{},[4653,4669],{"type":50,"tag":4289,"props":4654,"children":4655},{},[4656],{"type":50,"tag":4293,"props":4657,"children":4658},{},[4659,4664],{"type":50,"tag":4297,"props":4660,"children":4661},{},[4662],{"type":55,"value":4663},"Example",{"type":50,"tag":4297,"props":4665,"children":4666},{},[4667],{"type":55,"value":4668},"Description",{"type":50,"tag":4308,"props":4670,"children":4671},{},[4672,4688,4704,4720,4736,4752,4768,4784,4800,4816],{"type":50,"tag":4293,"props":4673,"children":4674},{},[4675,4683],{"type":50,"tag":4315,"props":4676,"children":4677},{},[4678],{"type":50,"tag":74,"props":4679,"children":4680},{},[4681],{"type":55,"value":4682},"SkeletonDemo",{"type":50,"tag":4315,"props":4684,"children":4685},{},[4686],{"type":55,"value":4687},"Minimal join meeting - start here",{"type":50,"tag":4293,"props":4689,"children":4690},{},[4691,4699],{"type":50,"tag":4315,"props":4692,"children":4693},{},[4694],{"type":50,"tag":74,"props":4695,"children":4696},{},[4697],{"type":55,"value":4698},"GetVideoRawData",{"type":50,"tag":4315,"props":4700,"children":4701},{},[4702],{"type":55,"value":4703},"Subscribe to raw video streams",{"type":50,"tag":4293,"props":4705,"children":4706},{},[4707,4715],{"type":50,"tag":4315,"props":4708,"children":4709},{},[4710],{"type":50,"tag":74,"props":4711,"children":4712},{},[4713],{"type":55,"value":4714},"GetAudioRawData",{"type":50,"tag":4315,"props":4716,"children":4717},{},[4718],{"type":55,"value":4719},"Subscribe to raw audio streams",{"type":50,"tag":4293,"props":4721,"children":4722},{},[4723,4731],{"type":50,"tag":4315,"props":4724,"children":4725},{},[4726],{"type":50,"tag":74,"props":4727,"children":4728},{},[4729],{"type":55,"value":4730},"SendVideoRawData",{"type":50,"tag":4315,"props":4732,"children":4733},{},[4734],{"type":55,"value":4735},"Send custom video as virtual camera",{"type":50,"tag":4293,"props":4737,"children":4738},{},[4739,4747],{"type":50,"tag":4315,"props":4740,"children":4741},{},[4742],{"type":50,"tag":74,"props":4743,"children":4744},{},[4745],{"type":55,"value":4746},"SendAudioRawData",{"type":50,"tag":4315,"props":4748,"children":4749},{},[4750],{"type":55,"value":4751},"Send custom audio as virtual mic",{"type":50,"tag":4293,"props":4753,"children":4754},{},[4755,4763],{"type":50,"tag":4315,"props":4756,"children":4757},{},[4758],{"type":50,"tag":74,"props":4759,"children":4760},{},[4761],{"type":55,"value":4762},"GetShareRawData",{"type":50,"tag":4315,"props":4764,"children":4765},{},[4766],{"type":55,"value":4767},"Capture screen share content",{"type":50,"tag":4293,"props":4769,"children":4770},{},[4771,4779],{"type":50,"tag":4315,"props":4772,"children":4773},{},[4774],{"type":50,"tag":74,"props":4775,"children":4776},{},[4777],{"type":55,"value":4778},"LocalRecording",{"type":50,"tag":4315,"props":4780,"children":4781},{},[4782],{"type":55,"value":4783},"Local MP4 recording",{"type":50,"tag":4293,"props":4785,"children":4786},{},[4787,4795],{"type":50,"tag":4315,"props":4788,"children":4789},{},[4790],{"type":50,"tag":74,"props":4791,"children":4792},{},[4793],{"type":55,"value":4794},"ChatDemo",{"type":50,"tag":4315,"props":4796,"children":4797},{},[4798],{"type":55,"value":4799},"In-meeting chat functionality",{"type":50,"tag":4293,"props":4801,"children":4802},{},[4803,4811],{"type":50,"tag":4315,"props":4804,"children":4805},{},[4806],{"type":50,"tag":74,"props":4807,"children":4808},{},[4809],{"type":55,"value":4810},"CaptionDemo",{"type":50,"tag":4315,"props":4812,"children":4813},{},[4814],{"type":55,"value":4815},"Closed caption\u002Flive transcription",{"type":50,"tag":4293,"props":4817,"children":4818},{},[4819,4827],{"type":50,"tag":4315,"props":4820,"children":4821},{},[4822],{"type":50,"tag":74,"props":4823,"children":4824},{},[4825],{"type":55,"value":4826},"BreakoutDemo",{"type":50,"tag":4315,"props":4828,"children":4829},{},[4830],{"type":55,"value":4831},"Breakout room management",{"type":50,"tag":64,"props":4833,"children":4835},{"id":4834},"detailed-references",[4836],{"type":55,"value":4837},"Detailed References",{"type":50,"tag":346,"props":4839,"children":4841},{"id":4840},"core-concepts-start-here",[4842],{"type":55,"value":4843},"🎯 Core Concepts (START HERE!)",{"type":50,"tag":136,"props":4845,"children":4846},{},[4847],{"type":50,"tag":84,"props":4848,"children":4849},{},[4850,4857,4859,4864],{"type":50,"tag":74,"props":4851,"children":4852},{},[4853],{"type":50,"tag":91,"props":4854,"children":4855},{"href":93},[4856],{"type":55,"value":93},{"type":55,"value":4858}," - ",{"type":50,"tag":74,"props":4860,"children":4861},{},[4862],{"type":55,"value":4863},"Universal pattern for implementing ANY feature",{"type":55,"value":4865}," - Understanding this unlocks the entire SDK!",{"type":50,"tag":346,"props":4867,"children":4869},{"id":4868},"complete-examples",[4870],{"type":55,"value":4871},"📚 Complete Examples",{"type":50,"tag":136,"props":4873,"children":4874},{},[4875,4887],{"type":50,"tag":84,"props":4876,"children":4877},{},[4878,4885],{"type":50,"tag":74,"props":4879,"children":4880},{},[4881],{"type":50,"tag":91,"props":4882,"children":4883},{"href":107},[4884],{"type":55,"value":107},{"type":55,"value":4886}," - Complete working authentication with JWT tokens",{"type":50,"tag":84,"props":4888,"children":4889},{},[4890,4897],{"type":50,"tag":74,"props":4891,"children":4892},{},[4893],{"type":50,"tag":91,"props":4894,"children":4895},{"href":1451},[4896],{"type":55,"value":1451},{"type":55,"value":4898}," - YUV420 video capture with detailed format explanation",{"type":50,"tag":346,"props":4900,"children":4902},{"id":4901},"troubleshooting-guides",[4903],{"type":55,"value":4904},"🔧 Troubleshooting Guides",{"type":50,"tag":136,"props":4906,"children":4907},{},[4908,4926,4938],{"type":50,"tag":84,"props":4909,"children":4910},{},[4911,4918,4919,4924],{"type":50,"tag":74,"props":4912,"children":4913},{},[4914],{"type":50,"tag":91,"props":4915,"children":4916},{"href":121},[4917],{"type":55,"value":121},{"type":55,"value":4858},{"type":50,"tag":74,"props":4920,"children":4921},{},[4922],{"type":55,"value":4923},"Why callbacks don't fire",{"type":55,"value":4925}," (MOST CRITICAL!)",{"type":50,"tag":84,"props":4927,"children":4928},{},[4929,4936],{"type":50,"tag":74,"props":4930,"children":4931},{},[4932],{"type":50,"tag":91,"props":4933,"children":4934},{"href":201},[4935],{"type":55,"value":201},{"type":55,"value":4937}," - SDK header dependency issues and fixes",{"type":50,"tag":84,"props":4939,"children":4940},{},[4941,4948],{"type":50,"tag":74,"props":4942,"children":4943},{},[4944],{"type":50,"tag":91,"props":4945,"children":4946},{"href":221},[4947],{"type":55,"value":221},{"type":55,"value":4949}," - Quick diagnostic workflow and error code tables",{"type":50,"tag":346,"props":4951,"children":4953},{"id":4952},"references",[4954],{"type":55,"value":4955},"📖 References",{"type":50,"tag":136,"props":4957,"children":4958},{},[4959,4971,4984,4997],{"type":50,"tag":84,"props":4960,"children":4961},{},[4962,4969],{"type":50,"tag":74,"props":4963,"children":4964},{},[4965],{"type":50,"tag":91,"props":4966,"children":4967},{"href":177},[4968],{"type":55,"value":177},{"type":55,"value":4970}," - How to implement ALL required virtual methods",{"type":50,"tag":84,"props":4972,"children":4973},{},[4974,4982],{"type":50,"tag":74,"props":4975,"children":4976},{},[4977],{"type":50,"tag":91,"props":4978,"children":4980},{"href":4979},"references\u002Fwindows-reference.md",[4981],{"type":55,"value":4979},{"type":55,"value":4983}," - Dependencies, Visual Studio setup",{"type":50,"tag":84,"props":4985,"children":4986},{},[4987,4995],{"type":50,"tag":74,"props":4988,"children":4989},{},[4990],{"type":50,"tag":91,"props":4991,"children":4993},{"href":4992},"..\u002Freferences\u002Fauthorization.md",[4994],{"type":55,"value":4992},{"type":55,"value":4996}," - SDK JWT generation",{"type":50,"tag":84,"props":4998,"children":4999},{},[5000,5008],{"type":50,"tag":74,"props":5001,"children":5002},{},[5003],{"type":50,"tag":91,"props":5004,"children":5006},{"href":5005},"..\u002Freferences\u002Fbot-authentication.md",[5007],{"type":55,"value":5005},{"type":55,"value":5009}," - Bot token types (ZAK, OBF, JWT)",{"type":50,"tag":346,"props":5011,"children":5013},{"id":5012},"feature-specific-guides",[5014],{"type":55,"value":5015},"🎨 Feature-Specific Guides",{"type":50,"tag":136,"props":5017,"children":5018},{},[5019,5032],{"type":50,"tag":84,"props":5020,"children":5021},{},[5022,5030],{"type":50,"tag":74,"props":5023,"children":5024},{},[5025],{"type":50,"tag":91,"props":5026,"children":5028},{"href":5027},"..\u002Freferences\u002Fbreakout-rooms.md",[5029],{"type":55,"value":5027},{"type":55,"value":5031}," - Programmatic breakout room management",{"type":50,"tag":84,"props":5033,"children":5034},{},[5035,5043],{"type":50,"tag":74,"props":5036,"children":5037},{},[5038],{"type":50,"tag":91,"props":5039,"children":5041},{"href":5040},"..\u002Freferences\u002Fai-companion.md",[5042],{"type":55,"value":5040},{"type":55,"value":5044}," - AI Companion controls",{"type":50,"tag":64,"props":5046,"children":5048},{"id":5047},"sample-repositories",[5049],{"type":55,"value":5050},"Sample Repositories",{"type":50,"tag":4285,"props":5052,"children":5053},{},[5054,5069],{"type":50,"tag":4289,"props":5055,"children":5056},{},[5057],{"type":50,"tag":4293,"props":5058,"children":5059},{},[5060,5065],{"type":50,"tag":4297,"props":5061,"children":5062},{},[5063],{"type":55,"value":5064},"Repository",{"type":50,"tag":4297,"props":5066,"children":5067},{},[5068],{"type":55,"value":4668},{"type":50,"tag":4308,"props":5070,"children":5071},{},[5072,5090],{"type":50,"tag":4293,"props":5073,"children":5074},{},[5075,5085],{"type":50,"tag":4315,"props":5076,"children":5077},{},[5078],{"type":50,"tag":91,"props":5079,"children":5082},{"href":5080,"rel":5081},"https:\u002F\u002Fgithub.com\u002Fzoom\u002Fmeetingsdk-windows-raw-recording-sample",[867],[5083],{"type":55,"value":5084},"meetingsdk-windows-raw-recording-sample",{"type":50,"tag":4315,"props":5086,"children":5087},{},[5088],{"type":55,"value":5089},"Official raw data capture samples",{"type":50,"tag":4293,"props":5091,"children":5092},{},[5093,5103],{"type":50,"tag":4315,"props":5094,"children":5095},{},[5096],{"type":50,"tag":91,"props":5097,"children":5100},{"href":5098,"rel":5099},"https:\u002F\u002Fgithub.com\u002Fzoom\u002Fmeetingsdk-windows-local-recording-container-sample",[867],[5101],{"type":55,"value":5102},"meetingsdk-windows-local-recording-sample",{"type":50,"tag":4315,"props":5104,"children":5105},{},[5106],{"type":55,"value":5107},"Local recording with Docker",{"type":50,"tag":64,"props":5109,"children":5111},{"id":5110},"playing-raw-videoaudio-files",[5112],{"type":55,"value":5113},"Playing Raw Video\u002FAudio Files",{"type":50,"tag":58,"props":5115,"children":5116},{},[5117],{"type":55,"value":5118},"Raw YUV\u002FPCM files have no headers - you must specify format explicitly.",{"type":50,"tag":346,"props":5120,"children":5122},{"id":5121},"play-raw-yuv-video",[5123],{"type":55,"value":5124},"Play Raw YUV Video",{"type":50,"tag":539,"props":5126,"children":5128},{"className":910,"code":5127,"language":912,"meta":544,"style":544},"ffplay -video_size 1280x720 -pixel_format yuv420p -f rawvideo output.yuv\n",[5129],{"type":50,"tag":353,"props":5130,"children":5131},{"__ignoreMap":544},[5132],{"type":50,"tag":550,"props":5133,"children":5134},{"class":552,"line":553},[5135],{"type":50,"tag":550,"props":5136,"children":5137},{},[5138],{"type":55,"value":5127},{"type":50,"tag":346,"props":5140,"children":5142},{"id":5141},"convert-yuv-to-mp4",[5143],{"type":55,"value":5144},"Convert YUV to MP4",{"type":50,"tag":539,"props":5146,"children":5148},{"className":910,"code":5147,"language":912,"meta":544,"style":544},"ffmpeg -video_size 1280x720 -pixel_format yuv420p -f rawvideo -i output.yuv -c:v libx264 output.mp4\n",[5149],{"type":50,"tag":353,"props":5150,"children":5151},{"__ignoreMap":544},[5152],{"type":50,"tag":550,"props":5153,"children":5154},{"class":552,"line":553},[5155],{"type":50,"tag":550,"props":5156,"children":5157},{},[5158],{"type":55,"value":5147},{"type":50,"tag":346,"props":5160,"children":5162},{"id":5161},"play-raw-pcm-audio",[5163],{"type":55,"value":5164},"Play Raw PCM Audio",{"type":50,"tag":539,"props":5166,"children":5168},{"className":910,"code":5167,"language":912,"meta":544,"style":544},"ffplay -f s16le -ar 32000 -ac 1 audio.pcm\n",[5169],{"type":50,"tag":353,"props":5170,"children":5171},{"__ignoreMap":544},[5172],{"type":50,"tag":550,"props":5173,"children":5174},{"class":552,"line":553},[5175],{"type":50,"tag":550,"props":5176,"children":5177},{},[5178],{"type":55,"value":5167},{"type":50,"tag":346,"props":5180,"children":5182},{"id":5181},"convert-pcm-to-wav",[5183],{"type":55,"value":5184},"Convert PCM to WAV",{"type":50,"tag":539,"props":5186,"children":5188},{"className":910,"code":5187,"language":912,"meta":544,"style":544},"ffmpeg -f s16le -ar 32000 -ac 1 -i audio.pcm output.wav\n",[5189],{"type":50,"tag":353,"props":5190,"children":5191},{"__ignoreMap":544},[5192],{"type":50,"tag":550,"props":5193,"children":5194},{"class":552,"line":553},[5195],{"type":50,"tag":550,"props":5196,"children":5197},{},[5198],{"type":55,"value":5187},{"type":50,"tag":346,"props":5200,"children":5202},{"id":5201},"combine-video-audio",[5203],{"type":55,"value":5204},"Combine Video + Audio",{"type":50,"tag":539,"props":5206,"children":5208},{"className":910,"code":5207,"language":912,"meta":544,"style":544},"ffmpeg -video_size 1280x720 -pixel_format yuv420p -f rawvideo -i output.yuv ^\n       -f s16le -ar 32000 -ac 1 -i audio.pcm ^\n       -c:v libx264 -c:a aac -shortest output.mp4\n",[5209],{"type":50,"tag":353,"props":5210,"children":5211},{"__ignoreMap":544},[5212,5220,5228],{"type":50,"tag":550,"props":5213,"children":5214},{"class":552,"line":553},[5215],{"type":50,"tag":550,"props":5216,"children":5217},{},[5218],{"type":55,"value":5219},"ffmpeg -video_size 1280x720 -pixel_format yuv420p -f rawvideo -i output.yuv ^\n",{"type":50,"tag":550,"props":5221,"children":5222},{"class":552,"line":562},[5223],{"type":50,"tag":550,"props":5224,"children":5225},{},[5226],{"type":55,"value":5227},"       -f s16le -ar 32000 -ac 1 -i audio.pcm ^\n",{"type":50,"tag":550,"props":5229,"children":5230},{"class":552,"line":571},[5231],{"type":50,"tag":550,"props":5232,"children":5233},{},[5234],{"type":55,"value":5235},"       -c:v libx264 -c:a aac -shortest output.mp4\n",{"type":50,"tag":58,"props":5237,"children":5238},{},[5239],{"type":50,"tag":74,"props":5240,"children":5241},{},[5242],{"type":55,"value":5243},"Key flags:",{"type":50,"tag":4285,"props":5245,"children":5246},{},[5247,5262],{"type":50,"tag":4289,"props":5248,"children":5249},{},[5250],{"type":50,"tag":4293,"props":5251,"children":5252},{},[5253,5258],{"type":50,"tag":4297,"props":5254,"children":5255},{},[5256],{"type":55,"value":5257},"Flag",{"type":50,"tag":4297,"props":5259,"children":5260},{},[5261],{"type":55,"value":4668},{"type":50,"tag":4308,"props":5263,"children":5264},{},[5265,5282,5299,5316,5333,5350],{"type":50,"tag":4293,"props":5266,"children":5267},{},[5268,5277],{"type":50,"tag":4315,"props":5269,"children":5270},{},[5271],{"type":50,"tag":353,"props":5272,"children":5274},{"className":5273},[],[5275],{"type":55,"value":5276},"-video_size WxH",{"type":50,"tag":4315,"props":5278,"children":5279},{},[5280],{"type":55,"value":5281},"Frame dimensions (e.g., 1280x720)",{"type":50,"tag":4293,"props":5283,"children":5284},{},[5285,5294],{"type":50,"tag":4315,"props":5286,"children":5287},{},[5288],{"type":50,"tag":353,"props":5289,"children":5291},{"className":5290},[],[5292],{"type":55,"value":5293},"-pixel_format yuv420p",{"type":50,"tag":4315,"props":5295,"children":5296},{},[5297],{"type":55,"value":5298},"I420\u002FYUV420 planar format",{"type":50,"tag":4293,"props":5300,"children":5301},{},[5302,5311],{"type":50,"tag":4315,"props":5303,"children":5304},{},[5305],{"type":50,"tag":353,"props":5306,"children":5308},{"className":5307},[],[5309],{"type":55,"value":5310},"-f rawvideo",{"type":50,"tag":4315,"props":5312,"children":5313},{},[5314],{"type":55,"value":5315},"Raw video input (no container)",{"type":50,"tag":4293,"props":5317,"children":5318},{},[5319,5328],{"type":50,"tag":4315,"props":5320,"children":5321},{},[5322],{"type":50,"tag":353,"props":5323,"children":5325},{"className":5324},[],[5326],{"type":55,"value":5327},"-f s16le",{"type":50,"tag":4315,"props":5329,"children":5330},{},[5331],{"type":55,"value":5332},"Signed 16-bit little-endian PCM",{"type":50,"tag":4293,"props":5334,"children":5335},{},[5336,5345],{"type":50,"tag":4315,"props":5337,"children":5338},{},[5339],{"type":50,"tag":353,"props":5340,"children":5342},{"className":5341},[],[5343],{"type":55,"value":5344},"-ar 32000",{"type":50,"tag":4315,"props":5346,"children":5347},{},[5348],{"type":55,"value":5349},"Sample rate (Zoom uses 32kHz)",{"type":50,"tag":4293,"props":5351,"children":5352},{},[5353,5362],{"type":50,"tag":4315,"props":5354,"children":5355},{},[5356],{"type":50,"tag":353,"props":5357,"children":5359},{"className":5358},[],[5360],{"type":55,"value":5361},"-ac 1",{"type":50,"tag":4315,"props":5363,"children":5364},{},[5365,5367,5373],{"type":55,"value":5366},"Mono (use ",{"type":50,"tag":353,"props":5368,"children":5370},{"className":5369},[],[5371],{"type":55,"value":5372},"-ac 2",{"type":55,"value":5374}," for stereo)",{"type":50,"tag":64,"props":5376,"children":5378},{"id":5377},"authentication-requirements-2026-update",[5379],{"type":55,"value":5380},"Authentication Requirements (2026 Update)",{"type":50,"tag":302,"props":5382,"children":5383},{},[5384],{"type":50,"tag":58,"props":5385,"children":5386},{},[5387,5392,5394,5399],{"type":50,"tag":74,"props":5388,"children":5389},{},[5390],{"type":55,"value":5391},"Important",{"type":55,"value":5393},": Beginning ",{"type":50,"tag":74,"props":5395,"children":5396},{},[5397],{"type":55,"value":5398},"March 2, 2026",{"type":55,"value":5400},", apps joining meetings outside their account must be authorized.",{"type":50,"tag":58,"props":5402,"children":5403},{},[5404],{"type":55,"value":5405},"Use one of:",{"type":50,"tag":136,"props":5407,"children":5408},{},[5409,5427,5444],{"type":50,"tag":84,"props":5410,"children":5411},{},[5412,5417,5419,5425],{"type":50,"tag":74,"props":5413,"children":5414},{},[5415],{"type":55,"value":5416},"App Privilege Token (OBF)",{"type":55,"value":5418}," - Recommended for bots (",{"type":50,"tag":353,"props":5420,"children":5422},{"className":5421},[],[5423],{"type":55,"value":5424},"app_privilege_token",{"type":55,"value":5426}," in JoinParam)",{"type":50,"tag":84,"props":5428,"children":5429},{},[5430,5435,5437,5443],{"type":50,"tag":74,"props":5431,"children":5432},{},[5433],{"type":55,"value":5434},"ZAK Token",{"type":55,"value":5436}," - Zoom Access Key (",{"type":50,"tag":353,"props":5438,"children":5440},{"className":5439},[],[5441],{"type":55,"value":5442},"userZAK",{"type":55,"value":5426},{"type":50,"tag":84,"props":5445,"children":5446},{},[5447,5452,5454,5460],{"type":50,"tag":74,"props":5448,"children":5449},{},[5450],{"type":55,"value":5451},"On Behalf Token",{"type":55,"value":5453}," - For specific use cases (",{"type":50,"tag":353,"props":5455,"children":5457},{"className":5456},[],[5458],{"type":55,"value":5459},"onBehalfToken",{"type":55,"value":5426},{"type":50,"tag":64,"props":5462,"children":5464},{"id":5463},"complete-documentation-library",[5465],{"type":55,"value":5466},"📖 Complete Documentation Library",{"type":50,"tag":58,"props":5468,"children":5469},{},[5470],{"type":55,"value":5471},"This skill includes comprehensive guides created from real-world debugging:",{"type":50,"tag":346,"props":5473,"children":5475},{"id":5474},"start-here",[5476],{"type":55,"value":5477},"🎯 Start Here",{"type":50,"tag":136,"props":5479,"children":5480},{},[5481,5493],{"type":50,"tag":84,"props":5482,"children":5483},{},[5484,5491],{"type":50,"tag":74,"props":5485,"children":5486},{},[5487],{"type":50,"tag":91,"props":5488,"children":5489},{"href":93},[5490],{"type":55,"value":96},{"type":55,"value":5492}," - Master document: Universal pattern for ANY feature",{"type":50,"tag":84,"props":5494,"children":5495},{},[5496,5503],{"type":50,"tag":74,"props":5497,"children":5498},{},[5499],{"type":50,"tag":91,"props":5500,"children":5501},{"href":264},[5502],{"type":55,"value":264},{"type":55,"value":5504}," - Complete navigation guide",{"type":50,"tag":346,"props":5506,"children":5508},{"id":5507},"by-category",[5509],{"type":55,"value":5510},"📚 By Category",{"type":50,"tag":58,"props":5512,"children":5513},{},[5514],{"type":50,"tag":74,"props":5515,"children":5516},{},[5517],{"type":55,"value":5518},"Core Concepts:",{"type":50,"tag":136,"props":5520,"children":5521},{},[5522],{"type":50,"tag":84,"props":5523,"children":5524},{},[5525,5529],{"type":50,"tag":91,"props":5526,"children":5527},{"href":93},[5528],{"type":55,"value":96},{"type":55,"value":5530}," - How every feature works (singleton + observer pattern)",{"type":50,"tag":58,"props":5532,"children":5533},{},[5534],{"type":50,"tag":74,"props":5535,"children":5536},{},[5537],{"type":55,"value":5538},"Complete Examples:",{"type":50,"tag":136,"props":5540,"children":5541},{},[5542,5551],{"type":50,"tag":84,"props":5543,"children":5544},{},[5545,5549],{"type":50,"tag":91,"props":5546,"children":5547},{"href":107},[5548],{"type":55,"value":110},{"type":55,"value":5550}," - Working JWT auth with all code",{"type":50,"tag":84,"props":5552,"children":5553},{},[5554,5558],{"type":50,"tag":91,"props":5555,"children":5556},{"href":1451},[5557],{"type":55,"value":1454},{"type":55,"value":5559}," - YUV420 video capture explained",{"type":50,"tag":58,"props":5561,"children":5562},{},[5563],{"type":50,"tag":74,"props":5564,"children":5565},{},[5566],{"type":55,"value":5567},"Troubleshooting:",{"type":50,"tag":136,"props":5569,"children":5570},{},[5571,5585,5595],{"type":50,"tag":84,"props":5572,"children":5573},{},[5574,5578,5579,5583],{"type":50,"tag":91,"props":5575,"children":5576},{"href":121},[5577],{"type":55,"value":124},{"type":55,"value":4858},{"type":50,"tag":74,"props":5580,"children":5581},{},[5582],{"type":55,"value":1479},{"type":55,"value":5584},": Why callbacks don't fire",{"type":50,"tag":84,"props":5586,"children":5587},{},[5588,5593],{"type":50,"tag":91,"props":5589,"children":5590},{"href":201},[5591],{"type":55,"value":5592},"Build Errors",{"type":55,"value":5594}," - SDK header dependency fixes",{"type":50,"tag":84,"props":5596,"children":5597},{},[5598,5602],{"type":50,"tag":91,"props":5599,"children":5600},{"href":221},[5601],{"type":55,"value":224},{"type":55,"value":5603}," - Quick diagnostics & error codes",{"type":50,"tag":58,"props":5605,"children":5606},{},[5607],{"type":50,"tag":74,"props":5608,"children":5609},{},[5610],{"type":55,"value":5611},"References:",{"type":50,"tag":136,"props":5613,"children":5614},{},[5615,5625,5635,5645,5655,5665],{"type":50,"tag":84,"props":5616,"children":5617},{},[5618,5623],{"type":50,"tag":91,"props":5619,"children":5620},{"href":177},[5621],{"type":55,"value":5622},"Interface Methods",{"type":55,"value":5624}," - All required virtual methods (6 auth + 9 meeting)",{"type":50,"tag":84,"props":5626,"children":5627},{},[5628,5633],{"type":50,"tag":91,"props":5629,"children":5630},{"href":4979},[5631],{"type":55,"value":5632},"Windows Reference",{"type":55,"value":5634}," - Platform setup",{"type":50,"tag":84,"props":5636,"children":5637},{},[5638,5643],{"type":50,"tag":91,"props":5639,"children":5640},{"href":4992},[5641],{"type":55,"value":5642},"Authorization",{"type":55,"value":5644}," - JWT generation",{"type":50,"tag":84,"props":5646,"children":5647},{},[5648,5653],{"type":50,"tag":91,"props":5649,"children":5650},{"href":5005},[5651],{"type":55,"value":5652},"Bot Authentication",{"type":55,"value":5654}," - Bot token types",{"type":50,"tag":84,"props":5656,"children":5657},{},[5658,5663],{"type":50,"tag":91,"props":5659,"children":5660},{"href":5027},[5661],{"type":55,"value":5662},"Breakout Rooms",{"type":55,"value":5664}," - Breakout room API",{"type":50,"tag":84,"props":5666,"children":5667},{},[5668,5673],{"type":50,"tag":91,"props":5669,"children":5670},{"href":5040},[5671],{"type":55,"value":5672},"AI Companion",{"type":55,"value":5674}," - AI features",{"type":50,"tag":346,"props":5676,"children":5678},{"id":5677},"most-critical-issues-from-real-debugging",[5679],{"type":55,"value":5680},"🚨 Most Critical Issues (From Real Debugging)",{"type":50,"tag":80,"props":5682,"children":5683},{},[5684,5705,5739],{"type":50,"tag":84,"props":5685,"children":5686},{},[5687,5692,5694],{"type":50,"tag":74,"props":5688,"children":5689},{},[5690],{"type":55,"value":5691},"Callbacks not firing",{"type":55,"value":5693}," → Missing Windows message loop (99% of issues)",{"type":50,"tag":136,"props":5695,"children":5696},{},[5697],{"type":50,"tag":84,"props":5698,"children":5699},{},[5700,5701],{"type":55,"value":1409},{"type":50,"tag":91,"props":5702,"children":5703},{"href":121},[5704],{"type":55,"value":1414},{"type":50,"tag":84,"props":5706,"children":5707},{},[5708,5713,5715,5720,5721,5726,5728],{"type":50,"tag":74,"props":5709,"children":5710},{},[5711],{"type":55,"value":5712},"Build errors",{"type":55,"value":5714}," → SDK header dependencies (",{"type":50,"tag":353,"props":5716,"children":5718},{"className":5717},[],[5719],{"type":55,"value":4347},{"type":55,"value":450},{"type":50,"tag":353,"props":5722,"children":5724},{"className":5723},[],[5725],{"type":55,"value":4355},{"type":55,"value":5727},", etc.)",{"type":50,"tag":136,"props":5729,"children":5730},{},[5731],{"type":50,"tag":84,"props":5732,"children":5733},{},[5734,5735],{"type":55,"value":1409},{"type":50,"tag":91,"props":5736,"children":5737},{"href":201},[5738],{"type":55,"value":204},{"type":50,"tag":84,"props":5740,"children":5741},{},[5742,5747,5749],{"type":50,"tag":74,"props":5743,"children":5744},{},[5745],{"type":55,"value":5746},"Abstract class errors",{"type":55,"value":5748}," → Missing virtual method implementations",{"type":50,"tag":136,"props":5750,"children":5751},{},[5752],{"type":50,"tag":84,"props":5753,"children":5754},{},[5755,5756],{"type":55,"value":1409},{"type":50,"tag":91,"props":5757,"children":5758},{"href":177},[5759],{"type":55,"value":3051},{"type":50,"tag":346,"props":5761,"children":5763},{"id":5762},"key-insight",[5764],{"type":55,"value":5765},"💡 Key Insight",{"type":50,"tag":58,"props":5767,"children":5768},{},[5769],{"type":50,"tag":74,"props":5770,"children":5771},{},[5772],{"type":55,"value":5773},"Once you learn the 3-step pattern, you can implement ANY of the 35+ features:",{"type":50,"tag":80,"props":5775,"children":5776},{},[5777],{"type":50,"tag":84,"props":5778,"children":5779},{},[5780],{"type":55,"value":5781},"Get controller → 2. Implement event listener → 3. Register and use",{"type":50,"tag":58,"props":5783,"children":5784},{},[5785,5786],{"type":55,"value":1409},{"type":50,"tag":91,"props":5787,"children":5788},{"href":93},[5789],{"type":55,"value":96},{"type":50,"tag":64,"props":5791,"children":5793},{"id":5792},"official-resources",[5794],{"type":55,"value":5795},"Official Resources",{"type":50,"tag":136,"props":5797,"children":5798},{},[5799,5814,5829,5844],{"type":50,"tag":84,"props":5800,"children":5801},{},[5802,5807,5808],{"type":50,"tag":74,"props":5803,"children":5804},{},[5805],{"type":55,"value":5806},"Official docs",{"type":55,"value":799},{"type":50,"tag":91,"props":5809,"children":5812},{"href":5810,"rel":5811},"https:\u002F\u002Fdevelopers.zoom.us\u002Fdocs\u002Fmeeting-sdk\u002Fwindows\u002F",[867],[5813],{"type":55,"value":5810},{"type":50,"tag":84,"props":5815,"children":5816},{},[5817,5822,5823],{"type":50,"tag":74,"props":5818,"children":5819},{},[5820],{"type":55,"value":5821},"API Reference",{"type":55,"value":799},{"type":50,"tag":91,"props":5824,"children":5827},{"href":5825,"rel":5826},"https:\u002F\u002Fmarketplacefront.zoom.us\u002Fsdk\u002Fmeeting\u002Fwindows\u002Fannotated.html",[867],[5828],{"type":55,"value":5825},{"type":50,"tag":84,"props":5830,"children":5831},{},[5832,5837,5838],{"type":50,"tag":74,"props":5833,"children":5834},{},[5835],{"type":55,"value":5836},"Developer forum",{"type":55,"value":799},{"type":50,"tag":91,"props":5839,"children":5842},{"href":5840,"rel":5841},"https:\u002F\u002Fdevforum.zoom.us\u002F",[867],[5843],{"type":55,"value":5840},{"type":50,"tag":84,"props":5845,"children":5846},{},[5847,5852,5853],{"type":50,"tag":74,"props":5848,"children":5849},{},[5850],{"type":55,"value":5851},"SDK download",{"type":55,"value":799},{"type":50,"tag":91,"props":5854,"children":5856},{"href":865,"rel":5855},[867],[5857],{"type":55,"value":865},{"type":50,"tag":5859,"props":5860,"children":5861},"hr",{},[],{"type":50,"tag":58,"props":5863,"children":5864},{},[5865,5870],{"type":50,"tag":74,"props":5866,"children":5867},{},[5868],{"type":55,"value":5869},"Documentation Version",{"type":55,"value":5871},": Based on Zoom Windows Meeting SDK v6.7.2.26830",{"type":50,"tag":58,"props":5873,"children":5874},{},[5875,5880,5882,5886],{"type":50,"tag":74,"props":5876,"children":5877},{},[5878],{"type":55,"value":5879},"Need help?",{"type":55,"value":5881}," Start with ",{"type":50,"tag":91,"props":5883,"children":5884},{"href":264},[5885],{"type":55,"value":264},{"type":55,"value":5887}," for complete navigation.",{"type":50,"tag":64,"props":5889,"children":5891},{"id":5890},"merged-from-meeting-sdkwindowsskillmd",[5892],{"type":55,"value":5893},"Merged from meeting-sdk\u002Fwindows\u002FSKILL.md",{"type":50,"tag":51,"props":5895,"children":5897},{"id":5896},"zoom-windows-meeting-sdk-complete-documentation-index",[5898],{"type":55,"value":5899},"Zoom Windows Meeting SDK - Complete Documentation Index",{"type":50,"tag":64,"props":5901,"children":5903},{"id":5902},"quick-start-path",[5904],{"type":55,"value":5905},"🚀 Quick Start Path",{"type":50,"tag":58,"props":5907,"children":5908},{},[5909],{"type":50,"tag":74,"props":5910,"children":5911},{},[5912],{"type":55,"value":5913},"If you're new to the SDK, follow this order:",{"type":50,"tag":80,"props":5915,"children":5916},{},[5917,5952,5978,5999,6029,6055,6081],{"type":50,"tag":84,"props":5918,"children":5919},{},[5920,5925,5927,5931],{"type":50,"tag":74,"props":5921,"children":5922},{},[5923],{"type":55,"value":5924},"Read the architecture pattern",{"type":55,"value":5926}," → ",{"type":50,"tag":91,"props":5928,"children":5929},{"href":93},[5930],{"type":55,"value":93},{"type":50,"tag":136,"props":5932,"children":5933},{},[5934,5939],{"type":50,"tag":84,"props":5935,"children":5936},{},[5937],{"type":55,"value":5938},"This teaches you the universal formula that applies to ALL features",{"type":50,"tag":84,"props":5940,"children":5941},{},[5942,5944,5950],{"type":55,"value":5943},"Once you understand this, you can implement any feature by reading the ",{"type":50,"tag":353,"props":5945,"children":5947},{"className":5946},[],[5948],{"type":55,"value":5949},".h",{"type":55,"value":5951}," files",{"type":50,"tag":84,"props":5953,"children":5954},{},[5955,5960,5961,5965],{"type":50,"tag":74,"props":5956,"children":5957},{},[5958],{"type":55,"value":5959},"Fix build errors",{"type":55,"value":5926},{"type":50,"tag":91,"props":5962,"children":5963},{"href":201},[5964],{"type":55,"value":201},{"type":50,"tag":136,"props":5966,"children":5967},{},[5968,5973],{"type":50,"tag":84,"props":5969,"children":5970},{},[5971],{"type":55,"value":5972},"SDK header dependencies issues",{"type":50,"tag":84,"props":5974,"children":5975},{},[5976],{"type":55,"value":5977},"Required include order",{"type":50,"tag":84,"props":5979,"children":5980},{},[5981,5986,5987,5991],{"type":50,"tag":74,"props":5982,"children":5983},{},[5984],{"type":55,"value":5985},"Implement authentication",{"type":55,"value":5926},{"type":50,"tag":91,"props":5988,"children":5989},{"href":107},[5990],{"type":55,"value":107},{"type":50,"tag":136,"props":5992,"children":5993},{},[5994],{"type":50,"tag":84,"props":5995,"children":5996},{},[5997],{"type":55,"value":5998},"Complete working JWT authentication code",{"type":50,"tag":84,"props":6000,"children":6001},{},[6002,6007,6008,6012],{"type":50,"tag":74,"props":6003,"children":6004},{},[6005],{"type":55,"value":6006},"Fix callback issues",{"type":55,"value":5926},{"type":50,"tag":91,"props":6009,"children":6010},{"href":121},[6011],{"type":55,"value":121},{"type":50,"tag":136,"props":6013,"children":6014},{},[6015,6024],{"type":50,"tag":84,"props":6016,"children":6017},{},[6018,6022],{"type":50,"tag":74,"props":6019,"children":6020},{},[6021],{"type":55,"value":1479},{"type":55,"value":6023},": Why callbacks don't fire without Windows message loop",{"type":50,"tag":84,"props":6025,"children":6026},{},[6027],{"type":55,"value":6028},"This was the hardest issue to diagnose!",{"type":50,"tag":84,"props":6030,"children":6031},{},[6032,6037,6038,6042],{"type":50,"tag":74,"props":6033,"children":6034},{},[6035],{"type":55,"value":6036},"Implement virtual methods",{"type":55,"value":5926},{"type":50,"tag":91,"props":6039,"children":6040},{"href":177},[6041],{"type":55,"value":177},{"type":50,"tag":136,"props":6043,"children":6044},{},[6045,6050],{"type":50,"tag":84,"props":6046,"children":6047},{},[6048],{"type":55,"value":6049},"Complete lists of all required methods",{"type":50,"tag":84,"props":6051,"children":6052},{},[6053],{"type":55,"value":6054},"How to avoid abstract class errors",{"type":50,"tag":84,"props":6056,"children":6057},{},[6058,6063,6064,6068],{"type":50,"tag":74,"props":6059,"children":6060},{},[6061],{"type":55,"value":6062},"Capture video (optional)",{"type":55,"value":5926},{"type":50,"tag":91,"props":6065,"children":6066},{"href":1451},[6067],{"type":55,"value":1451},{"type":50,"tag":136,"props":6069,"children":6070},{},[6071,6076],{"type":50,"tag":84,"props":6072,"children":6073},{},[6074],{"type":55,"value":6075},"YUV420 format explained",{"type":50,"tag":84,"props":6077,"children":6078},{},[6079],{"type":55,"value":6080},"Complete raw data capture workflow",{"type":50,"tag":84,"props":6082,"children":6083},{},[6084,6089,6090,6094],{"type":50,"tag":74,"props":6085,"children":6086},{},[6087],{"type":55,"value":6088},"Troubleshoot any issues",{"type":55,"value":5926},{"type":50,"tag":91,"props":6091,"children":6092},{"href":221},[6093],{"type":55,"value":221},{"type":50,"tag":136,"props":6095,"children":6096},{},[6097,6102,6107],{"type":50,"tag":84,"props":6098,"children":6099},{},[6100],{"type":55,"value":6101},"Quick diagnostic checklist",{"type":50,"tag":84,"props":6103,"children":6104},{},[6105],{"type":55,"value":6106},"Error code tables",{"type":50,"tag":84,"props":6108,"children":6109},{},[6110],{"type":55,"value":6111},"\"If you see X, do Y\" reference",{"type":50,"tag":5859,"props":6113,"children":6114},{},[],{"type":50,"tag":64,"props":6116,"children":6118},{"id":6117},"documentation-structure",[6119],{"type":55,"value":6120},"📂 Documentation Structure",{"type":50,"tag":539,"props":6122,"children":6125},{"className":6123,"code":6124,"language":55},[896],"meeting-sdk\u002Fwindows\u002F\n├── SKILL.md                           # Main skill overview\n├── SKILL.md                           # This file - navigation guide\n│\n├── concepts\u002F                          # Core architectural patterns\n│   ├── sdk-architecture-pattern.md   # THE MOST IMPORTANT DOC\n│   │                                  # Universal formula for ANY feature\n│   ├── singleton-hierarchy.md        # Navigation guide for SDK services\n│   │                                  # 4-level deep service tree, when\u002Fhow\n│   ├── custom-ui-architecture.md     # How Custom UI rendering works\n│   │                                  # Child HWNDs, D3D, layout, events\n│   └── custom-ui-vs-raw-data.md      # SDK-rendered vs self-rendered\n│                                      # Decision guide for Custom UI approach\n│\n├── examples\u002F                          # Complete working code\n│   ├── authentication-pattern.md     # JWT auth with full code\n│   ├── raw-video-capture.md          # Video capture with YUV420 details\n│   │                                  # Recording vs Streaming, permissions\n│   ├── custom-ui-video-rendering.md  # Custom UI with video container\n│   │                                  # Active speaker + gallery layout\n│   ├── breakout-rooms.md             # Complete breakout room guide\n│   │                                  # 5 roles, create\u002Fmanage\u002Fjoin\n│   ├── chat.md                       # Send\u002Freceive chat messages\n│   │                                  # Rich text, threading, file transfer\n│   ├── captions-transcription.md     # Live transcription & closed captions\n│   │                                  # Multi-language translation\n│   ├── local-recording.md            # Local MP4 recording\n│   │                                  # Permission flow, encoder monitoring\n│   ├── share-raw-data-capture.md     # Screen share raw data capture\n│   │                                  # YUV420 frames from shared content\n│   └── send-raw-data.md              # Virtual camera\u002Fmic\u002Fshare\n│                                      # Send custom video\u002Faudio\u002Fshare\n│\n├── troubleshooting\u002F                   # Problem solving guides\n│   ├── windows-message-loop.md       # CRITICAL - Why callbacks fail\n│   ├── build-errors.md               # Header dependency fixes + MSBuild\n│   └── common-issues.md              # Quick diagnostic workflow\n│\n└── references\u002F                        # Reference documentation\n    ├── interface-methods.md           # Required virtual methods\n    │                                  # Auth(6) + Meeting(9) + CustomUI(13)\n    ├── windows-reference.md           # Platform setup\n    ├── authorization.md               # JWT generation\n    ├── bot-authentication.md          # Bot token types\n    ├── breakout-rooms.md              # Breakout room features\n    └── ai-companion.md                # AI Companion features\n",[6126],{"type":50,"tag":353,"props":6127,"children":6128},{"__ignoreMap":544},[6129],{"type":55,"value":6124},{"type":50,"tag":5859,"props":6131,"children":6132},{},[],{"type":50,"tag":64,"props":6134,"children":6136},{"id":6135},"by-use-case",[6137],{"type":55,"value":6138},"🎯 By Use Case",{"type":50,"tag":346,"props":6140,"children":6142},{"id":6141},"i-want-to-build-a-meeting-bot",[6143],{"type":55,"value":6144},"I want to build a meeting bot",{"type":50,"tag":80,"props":6146,"children":6147},{},[6148,6157,6166,6175],{"type":50,"tag":84,"props":6149,"children":6150},{},[6151,6155],{"type":50,"tag":91,"props":6152,"children":6153},{"href":93},[6154],{"type":55,"value":96},{"type":55,"value":6156}," - Understand the pattern",{"type":50,"tag":84,"props":6158,"children":6159},{},[6160,6164],{"type":50,"tag":91,"props":6161,"children":6162},{"href":107},[6163],{"type":55,"value":110},{"type":55,"value":6165}," - Join meetings",{"type":50,"tag":84,"props":6167,"children":6168},{},[6169,6173],{"type":50,"tag":91,"props":6170,"children":6171},{"href":121},[6172],{"type":55,"value":124},{"type":55,"value":6174}," - Fix callback issues",{"type":50,"tag":84,"props":6176,"children":6177},{},[6178,6182],{"type":50,"tag":91,"props":6179,"children":6180},{"href":177},[6181],{"type":55,"value":5622},{"type":55,"value":6183}," - Implement callbacks",{"type":50,"tag":346,"props":6185,"children":6187},{"id":6186},"im-getting-build-errors",[6188],{"type":55,"value":6189},"I'm getting build errors",{"type":50,"tag":80,"props":6191,"children":6192},{},[6193,6202,6211],{"type":50,"tag":84,"props":6194,"children":6195},{},[6196,6200],{"type":50,"tag":91,"props":6197,"children":6198},{"href":201},[6199],{"type":55,"value":204},{"type":55,"value":6201}," - SDK header dependencies",{"type":50,"tag":84,"props":6203,"children":6204},{},[6205,6209],{"type":50,"tag":91,"props":6206,"children":6207},{"href":177},[6208],{"type":55,"value":5622},{"type":55,"value":6210}," - Abstract class errors",{"type":50,"tag":84,"props":6212,"children":6213},{},[6214,6218],{"type":50,"tag":91,"props":6215,"children":6216},{"href":221},[6217],{"type":55,"value":224},{"type":55,"value":6219}," - Linker errors",{"type":50,"tag":346,"props":6221,"children":6223},{"id":6222},"im-getting-runtime-errors",[6224],{"type":55,"value":6225},"I'm getting runtime errors",{"type":50,"tag":80,"props":6227,"children":6228},{},[6229,6238,6247],{"type":50,"tag":84,"props":6230,"children":6231},{},[6232,6236],{"type":50,"tag":91,"props":6233,"children":6234},{"href":121},[6235],{"type":55,"value":124},{"type":55,"value":6237}," - Callbacks not firing",{"type":50,"tag":84,"props":6239,"children":6240},{},[6241,6245],{"type":50,"tag":91,"props":6242,"children":6243},{"href":107},[6244],{"type":55,"value":110},{"type":55,"value":6246}," - Auth timeout",{"type":50,"tag":84,"props":6248,"children":6249},{},[6250,6254],{"type":50,"tag":91,"props":6251,"children":6252},{"href":221},[6253],{"type":55,"value":224},{"type":55,"value":6255}," - Error code tables",{"type":50,"tag":346,"props":6257,"children":6259},{"id":6258},"i-want-to-build-a-custom-ui-meeting-app",[6260],{"type":55,"value":6261},"I want to build a Custom UI meeting app",{"type":50,"tag":80,"props":6263,"children":6264},{},[6265,6274,6283,6292,6301],{"type":50,"tag":84,"props":6266,"children":6267},{},[6268,6272],{"type":50,"tag":91,"props":6269,"children":6270},{"href":144},[6271],{"type":55,"value":147},{"type":55,"value":6273}," - How SDK rendering works",{"type":50,"tag":84,"props":6275,"children":6276},{},[6277,6281],{"type":50,"tag":91,"props":6278,"children":6279},{"href":166},[6280],{"type":55,"value":169},{"type":55,"value":6282}," - Choose your approach",{"type":50,"tag":84,"props":6284,"children":6285},{},[6286,6291],{"type":50,"tag":91,"props":6287,"children":6288},{"href":155},[6289],{"type":55,"value":6290},"Custom UI Video Rendering",{"type":55,"value":160},{"type":50,"tag":84,"props":6293,"children":6294},{},[6295,6299],{"type":50,"tag":91,"props":6296,"children":6297},{"href":177},[6298],{"type":55,"value":5622},{"type":55,"value":6300}," - 13 Custom UI virtual methods",{"type":50,"tag":84,"props":6302,"children":6303},{},[6304,6308],{"type":50,"tag":91,"props":6305,"children":6306},{"href":201},[6307],{"type":55,"value":204},{"type":55,"value":6309}," - MSBuild from git bash",{"type":50,"tag":346,"props":6311,"children":6313},{"id":6312},"i-want-to-capture-videoaudio",[6314],{"type":55,"value":6315},"I want to capture video\u002Faudio",{"type":50,"tag":80,"props":6317,"children":6318},{},[6319,6346,6370,6379],{"type":50,"tag":84,"props":6320,"children":6321},{},[6322,6326,6328],{"type":50,"tag":91,"props":6323,"children":6324},{"href":1451},[6325],{"type":55,"value":1454},{"type":55,"value":6327}," - Complete video workflow\n",{"type":50,"tag":136,"props":6329,"children":6330},{},[6331,6336,6341],{"type":50,"tag":84,"props":6332,"children":6333},{},[6334],{"type":55,"value":6335},"Recording vs Streaming approaches",{"type":50,"tag":84,"props":6337,"children":6338},{},[6339],{"type":55,"value":6340},"Permission requirements (host, OAuth tokens)",{"type":50,"tag":84,"props":6342,"children":6343},{},[6344],{"type":55,"value":6345},"Audio PCM capture",{"type":50,"tag":84,"props":6347,"children":6348},{},[6349,6355,6357],{"type":50,"tag":91,"props":6350,"children":6352},{"href":6351},"examples\u002Fshare-raw-data-capture.md",[6353],{"type":55,"value":6354},"Share Raw Data Capture",{"type":55,"value":6356}," - Screen share capture\n",{"type":50,"tag":136,"props":6358,"children":6359},{},[6360,6365],{"type":50,"tag":84,"props":6361,"children":6362},{},[6363],{"type":55,"value":6364},"Subscribe to RAW_DATA_TYPE_SHARE",{"type":50,"tag":84,"props":6366,"children":6367},{},[6368],{"type":55,"value":6369},"Handle dynamic resolution",{"type":50,"tag":84,"props":6371,"children":6372},{},[6373,6377],{"type":50,"tag":91,"props":6374,"children":6375},{"href":93},[6376],{"type":55,"value":96},{"type":55,"value":6378}," - Controller pattern",{"type":50,"tag":84,"props":6380,"children":6381},{},[6382,6386],{"type":50,"tag":91,"props":6383,"children":6384},{"href":221},[6385],{"type":55,"value":224},{"type":55,"value":6387}," - No frames received",{"type":50,"tag":346,"props":6389,"children":6391},{"id":6390},"i-want-to-use-breakout-rooms",[6392],{"type":55,"value":6393},"I want to use breakout rooms",{"type":50,"tag":80,"props":6395,"children":6396},{},[6397,6421],{"type":50,"tag":84,"props":6398,"children":6399},{},[6400,6406,6408],{"type":50,"tag":91,"props":6401,"children":6403},{"href":6402},"examples\u002Fbreakout-rooms.md",[6404],{"type":55,"value":6405},"Breakout Rooms Guide",{"type":55,"value":6407}," - Complete breakout room workflow\n",{"type":50,"tag":136,"props":6409,"children":6410},{},[6411,6416],{"type":50,"tag":84,"props":6412,"children":6413},{},[6414],{"type":55,"value":6415},"5 roles: Creator, Admin, Data, Assistant, Attendee",{"type":50,"tag":84,"props":6417,"children":6418},{},[6419],{"type":55,"value":6420},"Create, configure, manage, join\u002Fleave rooms",{"type":50,"tag":84,"props":6422,"children":6423},{},[6424,6428],{"type":50,"tag":91,"props":6425,"children":6426},{"href":221},[6427],{"type":55,"value":224},{"type":55,"value":6429}," - Breakout room error codes",{"type":50,"tag":346,"props":6431,"children":6433},{"id":6432},"i-want-to-implement-chat",[6434],{"type":55,"value":6435},"I want to implement chat",{"type":50,"tag":80,"props":6437,"children":6438},{},[6439],{"type":50,"tag":84,"props":6440,"children":6441},{},[6442,6448,6450],{"type":50,"tag":91,"props":6443,"children":6445},{"href":6444},"examples\u002Fchat.md",[6446],{"type":55,"value":6447},"Chat Guide",{"type":55,"value":6449}," - Send\u002Freceive messages\n",{"type":50,"tag":136,"props":6451,"children":6452},{},[6453,6458,6463],{"type":50,"tag":84,"props":6454,"children":6455},{},[6456],{"type":55,"value":6457},"Rich text formatting (bold, italic, links)",{"type":50,"tag":84,"props":6459,"children":6460},{},[6461],{"type":55,"value":6462},"Private messages and threading",{"type":50,"tag":84,"props":6464,"children":6465},{},[6466],{"type":55,"value":6467},"File transfer events",{"type":50,"tag":346,"props":6469,"children":6471},{"id":6470},"i-want-to-use-live-transcription",[6472],{"type":55,"value":6473},"I want to use live transcription",{"type":50,"tag":80,"props":6475,"children":6476},{},[6477],{"type":50,"tag":84,"props":6478,"children":6479},{},[6480,6486,6488],{"type":50,"tag":91,"props":6481,"children":6483},{"href":6482},"examples\u002Fcaptions-transcription.md",[6484],{"type":55,"value":6485},"Captions & Transcription Guide",{"type":55,"value":6487}," - Live transcription\n",{"type":50,"tag":136,"props":6489,"children":6490},{},[6491,6496,6501],{"type":50,"tag":84,"props":6492,"children":6493},{},[6494],{"type":55,"value":6495},"Automatic speech-to-text",{"type":50,"tag":84,"props":6497,"children":6498},{},[6499],{"type":55,"value":6500},"Multi-language translation",{"type":50,"tag":84,"props":6502,"children":6503},{},[6504],{"type":55,"value":6505},"Manual closed captions (host feature)",{"type":50,"tag":346,"props":6507,"children":6509},{"id":6508},"i-want-to-record-meetings",[6510],{"type":55,"value":6511},"I want to record meetings",{"type":50,"tag":80,"props":6513,"children":6514},{},[6515],{"type":50,"tag":84,"props":6516,"children":6517},{},[6518,6524,6526],{"type":50,"tag":91,"props":6519,"children":6521},{"href":6520},"examples\u002Flocal-recording.md",[6522],{"type":55,"value":6523},"Local Recording Guide",{"type":55,"value":6525}," - Local MP4 recording\n",{"type":50,"tag":136,"props":6527,"children":6528},{},[6529,6534,6539],{"type":50,"tag":84,"props":6530,"children":6531},{},[6532],{"type":55,"value":6533},"Permission request workflow",{"type":50,"tag":84,"props":6535,"children":6536},{},[6537],{"type":55,"value":6538},"zTscoder.exe encoder monitoring",{"type":50,"tag":84,"props":6540,"children":6541},{},[6542],{"type":55,"value":6543},"Gallery view vs active speaker",{"type":50,"tag":346,"props":6545,"children":6547},{"id":6546},"i-want-to-implement-a-specific-feature",[6548],{"type":55,"value":6549},"I want to implement a specific feature",{"type":50,"tag":80,"props":6551,"children":6552},{},[6553,6566,6577,6588],{"type":50,"tag":84,"props":6554,"children":6555},{},[6556,6560,6561],{"type":50,"tag":91,"props":6557,"children":6558},{"href":93},[6559],{"type":55,"value":96},{"type":55,"value":4858},{"type":50,"tag":74,"props":6562,"children":6563},{},[6564],{"type":55,"value":6565},"START HERE!",{"type":50,"tag":84,"props":6567,"children":6568},{},[6569,6571],{"type":55,"value":6570},"Find the controller in ",{"type":50,"tag":353,"props":6572,"children":6574},{"className":6573},[],[6575],{"type":55,"value":6576},"SDK\u002Fx64\u002Fh\u002Fmeeting_service_interface.h",{"type":50,"tag":84,"props":6578,"children":6579},{},[6580,6582],{"type":55,"value":6581},"Find the header in ",{"type":50,"tag":353,"props":6583,"children":6585},{"className":6584},[],[6586],{"type":55,"value":6587},"SDK\u002Fx64\u002Fh\u002Fmeeting_service_components\u002F",{"type":50,"tag":84,"props":6589,"children":6590},{},[6591],{"type":55,"value":6592},"Follow the universal pattern: Get controller → Implement listener → Use methods",{"type":50,"tag":346,"props":6594,"children":6596},{"id":6595},"i-want-to-understand-the-sdk-architecture",[6597],{"type":55,"value":6598},"I want to understand the SDK architecture",{"type":50,"tag":80,"props":6600,"children":6601},{},[6602,6611,6622,6631],{"type":50,"tag":84,"props":6603,"children":6604},{},[6605,6609],{"type":50,"tag":91,"props":6606,"children":6607},{"href":93},[6608],{"type":55,"value":96},{"type":55,"value":6610}," - Complete architecture overview",{"type":50,"tag":84,"props":6612,"children":6613},{},[6614,6620],{"type":50,"tag":91,"props":6615,"children":6617},{"href":6616},"concepts\u002Fsingleton-hierarchy.md",[6618],{"type":55,"value":6619},"Singleton Hierarchy",{"type":55,"value":6621}," - Navigate the service tree (4 levels)",{"type":50,"tag":84,"props":6623,"children":6624},{},[6625,6629],{"type":50,"tag":91,"props":6626,"children":6627},{"href":177},[6628],{"type":55,"value":5622},{"type":55,"value":6630}," - Event listener pattern",{"type":50,"tag":84,"props":6632,"children":6633},{},[6634,6638],{"type":50,"tag":91,"props":6635,"children":6636},{"href":107},[6637],{"type":55,"value":110},{"type":55,"value":6639}," - Service pattern",{"type":50,"tag":5859,"props":6641,"children":6642},{},[],{"type":50,"tag":64,"props":6644,"children":6646},{"id":6645},"most-critical-documents",[6647],{"type":55,"value":6648},"🔥 Most Critical Documents",{"type":50,"tag":346,"props":6650,"children":6652},{"id":6651},"_1-sdk-architecture-pattern-master-document",[6653],{"type":55,"value":6654},"1. SDK Architecture Pattern (⭐ MASTER DOCUMENT)",{"type":50,"tag":58,"props":6656,"children":6657},{},[6658],{"type":50,"tag":74,"props":6659,"children":6660},{},[6661],{"type":50,"tag":91,"props":6662,"children":6663},{"href":93},[6664],{"type":55,"value":93},{"type":50,"tag":58,"props":6666,"children":6667},{},[6668],{"type":55,"value":6669},"This is THE most important document. It teaches the universal 3-step pattern:",{"type":50,"tag":80,"props":6671,"children":6672},{},[6673,6678,6683],{"type":50,"tag":84,"props":6674,"children":6675},{},[6676],{"type":55,"value":6677},"Get controller (singleton pattern)",{"type":50,"tag":84,"props":6679,"children":6680},{},[6681],{"type":55,"value":6682},"Implement event listener (observer pattern)",{"type":50,"tag":84,"props":6684,"children":6685},{},[6686],{"type":55,"value":813},{"type":50,"tag":58,"props":6688,"children":6689},{},[6690,6692,6697],{"type":55,"value":6691},"Once you understand this pattern, you can implement ",{"type":50,"tag":74,"props":6693,"children":6694},{},[6695],{"type":55,"value":6696},"any of the 35+ features",{"type":55,"value":6698}," by just reading the SDK headers.",{"type":50,"tag":58,"props":6700,"children":6701},{},[6702,6707],{"type":50,"tag":74,"props":6703,"children":6704},{},[6705],{"type":55,"value":6706},"Key insight",{"type":55,"value":6708},": The Zoom SDK follows a perfectly consistent architecture. Every feature works the same way.",{"type":50,"tag":5859,"props":6710,"children":6711},{},[],{"type":50,"tag":346,"props":6713,"children":6715},{"id":6714},"_2-windows-message-loop-️-most-common-issue",[6716],{"type":55,"value":6717},"2. Windows Message Loop (⚠️ MOST COMMON ISSUE)",{"type":50,"tag":58,"props":6719,"children":6720},{},[6721],{"type":50,"tag":74,"props":6722,"children":6723},{},[6724],{"type":50,"tag":91,"props":6725,"children":6726},{"href":121},[6727],{"type":55,"value":121},{"type":50,"tag":58,"props":6729,"children":6730},{},[6731],{"type":55,"value":6732},"99% of \"callbacks not firing\" issues are caused by missing Windows message loop. This document explains:",{"type":50,"tag":136,"props":6734,"children":6735},{},[6736,6748,6753],{"type":50,"tag":84,"props":6737,"children":6738},{},[6739,6741,6746],{"type":55,"value":6740},"Why SDK requires ",{"type":50,"tag":353,"props":6742,"children":6744},{"className":6743},[],[6745],{"type":55,"value":4230},{"type":55,"value":6747}," loop",{"type":50,"tag":84,"props":6749,"children":6750},{},[6751],{"type":55,"value":6752},"How to implement it correctly",{"type":50,"tag":84,"props":6754,"children":6755},{},[6756],{"type":55,"value":6757},"How to diagnose callback issues",{"type":50,"tag":58,"props":6759,"children":6760},{},[6761,6766],{"type":50,"tag":74,"props":6762,"children":6763},{},[6764],{"type":55,"value":6765},"This was the hardest bug to find during development",{"type":55,"value":6767}," (took ~2 hours).",{"type":50,"tag":5859,"props":6769,"children":6770},{},[],{"type":50,"tag":346,"props":6772,"children":6774},{"id":6773},"_3-build-errors-guide",[6775],{"type":55,"value":6776},"3. Build Errors Guide",{"type":50,"tag":58,"props":6778,"children":6779},{},[6780],{"type":50,"tag":74,"props":6781,"children":6782},{},[6783],{"type":50,"tag":91,"props":6784,"children":6785},{"href":201},[6786],{"type":55,"value":201},{"type":50,"tag":58,"props":6788,"children":6789},{},[6790],{"type":55,"value":6791},"SDK headers have dependency bugs that cause build errors. This document provides:",{"type":50,"tag":136,"props":6793,"children":6794},{},[6795,6799,6812,6822],{"type":50,"tag":84,"props":6796,"children":6797},{},[6798],{"type":55,"value":5977},{"type":50,"tag":84,"props":6800,"children":6801},{},[6802,6804,6810],{"type":55,"value":6803},"Missing ",{"type":50,"tag":353,"props":6805,"children":6807},{"className":6806},[],[6808],{"type":55,"value":6809},"\u003Ccstdint>",{"type":55,"value":6811}," fix",{"type":50,"tag":84,"props":6813,"children":6814},{},[6815,6816,6821],{"type":55,"value":6803},{"type":50,"tag":353,"props":6817,"children":6819},{"className":6818},[],[6820],{"type":55,"value":4355},{"type":55,"value":6811},{"type":50,"tag":84,"props":6823,"children":6824},{},[6825,6826,6832],{"type":55,"value":6803},{"type":50,"tag":353,"props":6827,"children":6829},{"className":6828},[],[6830],{"type":55,"value":6831},"YUVRawDataI420",{"type":55,"value":6811},{"type":50,"tag":5859,"props":6834,"children":6835},{},[],{"type":50,"tag":64,"props":6837,"children":6839},{"id":6838},"by-document-type",[6840],{"type":55,"value":6841},"📊 By Document Type",{"type":50,"tag":346,"props":6843,"children":6845},{"id":6844},"concepts-why-and-how",[6846],{"type":55,"value":6847},"Concepts (Why and How)",{"type":50,"tag":136,"props":6849,"children":6850},{},[6851,6860],{"type":50,"tag":84,"props":6852,"children":6853},{},[6854,6858],{"type":50,"tag":91,"props":6855,"children":6856},{"href":93},[6857],{"type":55,"value":96},{"type":55,"value":6859}," - Universal implementation pattern",{"type":50,"tag":84,"props":6861,"children":6862},{},[6863,6867],{"type":50,"tag":91,"props":6864,"children":6865},{"href":6616},[6866],{"type":55,"value":6619},{"type":55,"value":6868}," - Navigation guide for SDK services (4 levels deep)",{"type":50,"tag":346,"props":6870,"children":6872},{"id":6871},"examples-complete-working-code",[6873],{"type":55,"value":6874},"Examples (Complete Working Code)",{"type":50,"tag":136,"props":6876,"children":6877},{},[6878,6887,6896,6905,6914,6924,6934,6944,6953],{"type":50,"tag":84,"props":6879,"children":6880},{},[6881,6885],{"type":50,"tag":91,"props":6882,"children":6883},{"href":107},[6884],{"type":55,"value":110},{"type":55,"value":6886}," - JWT authentication",{"type":50,"tag":84,"props":6888,"children":6889},{},[6890,6894],{"type":50,"tag":91,"props":6891,"children":6892},{"href":1451},[6893],{"type":55,"value":1454},{"type":55,"value":6895}," - Video capture with YUV420, recording vs streaming",{"type":50,"tag":84,"props":6897,"children":6898},{},[6899,6903],{"type":50,"tag":91,"props":6900,"children":6901},{"href":155},[6902],{"type":55,"value":6290},{"type":55,"value":6904}," - SDK-rendered video containers",{"type":50,"tag":84,"props":6906,"children":6907},{},[6908,6912],{"type":50,"tag":91,"props":6909,"children":6910},{"href":6402},[6911],{"type":55,"value":5662},{"type":55,"value":6913}," - Create, manage, join breakout rooms",{"type":50,"tag":84,"props":6915,"children":6916},{},[6917,6922],{"type":50,"tag":91,"props":6918,"children":6919},{"href":6444},[6920],{"type":55,"value":6921},"Chat",{"type":55,"value":6923}," - Send\u002Freceive messages with rich formatting",{"type":50,"tag":84,"props":6925,"children":6926},{},[6927,6932],{"type":50,"tag":91,"props":6928,"children":6929},{"href":6482},[6930],{"type":55,"value":6931},"Captions & Transcription",{"type":55,"value":6933}," - Live transcription and closed captions",{"type":50,"tag":84,"props":6935,"children":6936},{},[6937,6942],{"type":50,"tag":91,"props":6938,"children":6939},{"href":6520},[6940],{"type":55,"value":6941},"Local Recording",{"type":55,"value":6943}," - Local MP4 recording with permission flow",{"type":50,"tag":84,"props":6945,"children":6946},{},[6947,6951],{"type":50,"tag":91,"props":6948,"children":6949},{"href":6351},[6950],{"type":55,"value":6354},{"type":55,"value":6952}," - Screen share raw data capture",{"type":50,"tag":84,"props":6954,"children":6955},{},[6956,6962],{"type":50,"tag":91,"props":6957,"children":6959},{"href":6958},"examples\u002Fsend-raw-data.md",[6960],{"type":55,"value":6961},"Send Raw Data",{"type":55,"value":6963}," - Virtual camera, microphone, and share",{"type":50,"tag":346,"props":6965,"children":6967},{"id":6966},"troubleshooting-problem-solving",[6968],{"type":55,"value":6969},"Troubleshooting (Problem Solving)",{"type":50,"tag":136,"props":6971,"children":6972},{},[6973,6982,6991],{"type":50,"tag":84,"props":6974,"children":6975},{},[6976,6980],{"type":50,"tag":91,"props":6977,"children":6978},{"href":121},[6979],{"type":55,"value":124},{"type":55,"value":6981}," - Callback issues",{"type":50,"tag":84,"props":6983,"children":6984},{},[6985,6989],{"type":50,"tag":91,"props":6986,"children":6987},{"href":201},[6988],{"type":55,"value":5592},{"type":55,"value":6990}," - Compilation issues",{"type":50,"tag":84,"props":6992,"children":6993},{},[6994,6998],{"type":50,"tag":91,"props":6995,"children":6996},{"href":221},[6997],{"type":55,"value":224},{"type":55,"value":6999}," - Quick diagnostics",{"type":50,"tag":346,"props":7001,"children":7003},{"id":7002},"references-lookup-information",[7004],{"type":55,"value":7005},"References (Lookup Information)",{"type":50,"tag":136,"props":7007,"children":7008},{},[7009,7018,7026,7034,7043,7051],{"type":50,"tag":84,"props":7010,"children":7011},{},[7012,7016],{"type":50,"tag":91,"props":7013,"children":7014},{"href":177},[7015],{"type":55,"value":5622},{"type":55,"value":7017}," - Required virtual methods",{"type":50,"tag":84,"props":7019,"children":7020},{},[7021,7025],{"type":50,"tag":91,"props":7022,"children":7023},{"href":4979},[7024],{"type":55,"value":5632},{"type":55,"value":5634},{"type":50,"tag":84,"props":7027,"children":7028},{},[7029,7033],{"type":50,"tag":91,"props":7030,"children":7031},{"href":4992},[7032],{"type":55,"value":5642},{"type":55,"value":5644},{"type":50,"tag":84,"props":7035,"children":7036},{},[7037,7041],{"type":50,"tag":91,"props":7038,"children":7039},{"href":5005},[7040],{"type":55,"value":5652},{"type":55,"value":7042}," - Bot tokens",{"type":50,"tag":84,"props":7044,"children":7045},{},[7046,7050],{"type":50,"tag":91,"props":7047,"children":7048},{"href":5027},[7049],{"type":55,"value":5662},{"type":55,"value":5664},{"type":50,"tag":84,"props":7052,"children":7053},{},[7054,7058],{"type":50,"tag":91,"props":7055,"children":7056},{"href":5040},[7057],{"type":55,"value":5672},{"type":55,"value":5674},{"type":50,"tag":5859,"props":7060,"children":7061},{},[],{"type":50,"tag":64,"props":7063,"children":7065},{"id":7064},"key-learnings-from-real-debugging",[7066],{"type":55,"value":7067},"💡 Key Learnings from Real Debugging",{"type":50,"tag":58,"props":7069,"children":7070},{},[7071],{"type":55,"value":7072},"These documents were created from actual debugging of a non-functional Zoom SDK sample. Here are the key insights:",{"type":50,"tag":346,"props":7074,"children":7076},{"id":7075},"critical-discoveries",[7077],{"type":55,"value":7078},"Critical Discoveries:",{"type":50,"tag":80,"props":7080,"children":7081},{},[7082,7118,7181,7226,7260],{"type":50,"tag":84,"props":7083,"children":7084},{},[7085,7090,7092],{"type":50,"tag":74,"props":7086,"children":7087},{},[7088],{"type":55,"value":7089},"Windows Message Loop is MANDATORY",{"type":55,"value":7091}," (not optional)",{"type":50,"tag":136,"props":7093,"children":7094},{},[7095,7100,7105,7110],{"type":50,"tag":84,"props":7096,"children":7097},{},[7098],{"type":55,"value":7099},"SDK uses Windows message pump for callbacks",{"type":50,"tag":84,"props":7101,"children":7102},{},[7103],{"type":55,"value":7104},"Without it, callbacks are queued but never fire",{"type":50,"tag":84,"props":7106,"children":7107},{},[7108],{"type":55,"value":7109},"Manifests as \"authentication timeout\" even with valid JWT",{"type":50,"tag":84,"props":7111,"children":7112},{},[7113,7114],{"type":55,"value":1409},{"type":50,"tag":91,"props":7115,"children":7116},{"href":121},[7117],{"type":55,"value":1414},{"type":50,"tag":84,"props":7119,"children":7120},{},[7121,7126],{"type":50,"tag":74,"props":7122,"children":7123},{},[7124],{"type":55,"value":7125},"SDK Headers Have Dependency Bugs",{"type":50,"tag":136,"props":7127,"children":7128},{},[7129,7140,7157,7173],{"type":50,"tag":84,"props":7130,"children":7131},{},[7132,7133,7138],{"type":55,"value":6803},{"type":50,"tag":353,"props":7134,"children":7136},{"className":7135},[],[7137],{"type":55,"value":1509},{"type":55,"value":7139}," in SDK headers",{"type":50,"tag":84,"props":7141,"children":7142},{},[7143,7149,7151],{"type":50,"tag":353,"props":7144,"children":7146},{"className":7145},[],[7147],{"type":55,"value":7148},"meeting_participants_ctrl_interface.h",{"type":55,"value":7150}," doesn't include ",{"type":50,"tag":353,"props":7152,"children":7154},{"className":7153},[],[7155],{"type":55,"value":7156},"meeting_audio_interface.h",{"type":50,"tag":84,"props":7158,"children":7159},{},[7160,7166,7168],{"type":50,"tag":353,"props":7161,"children":7163},{"className":7162},[],[7164],{"type":55,"value":7165},"rawdata_renderer_interface.h",{"type":55,"value":7167}," only forward-declares ",{"type":50,"tag":353,"props":7169,"children":7171},{"className":7170},[],[7172],{"type":55,"value":6831},{"type":50,"tag":84,"props":7174,"children":7175},{},[7176,7177],{"type":55,"value":1409},{"type":50,"tag":91,"props":7178,"children":7179},{"href":201},[7180],{"type":55,"value":204},{"type":50,"tag":84,"props":7182,"children":7183},{},[7184,7189],{"type":50,"tag":74,"props":7185,"children":7186},{},[7187],{"type":55,"value":7188},"Include Order is CRITICAL",{"type":50,"tag":136,"props":7190,"children":7191},{},[7192,7203,7213,7218],{"type":50,"tag":84,"props":7193,"children":7194},{},[7195,7201],{"type":50,"tag":353,"props":7196,"children":7198},{"className":7197},[],[7199],{"type":55,"value":7200},"\u003Cwindows.h>",{"type":55,"value":7202}," must be FIRST",{"type":50,"tag":84,"props":7204,"children":7205},{},[7206,7211],{"type":50,"tag":353,"props":7207,"children":7209},{"className":7208},[],[7210],{"type":55,"value":6809},{"type":55,"value":7212}," must be SECOND",{"type":50,"tag":84,"props":7214,"children":7215},{},[7216],{"type":55,"value":7217},"Then SDK headers in specific order",{"type":50,"tag":84,"props":7219,"children":7220},{},[7221,7222],{"type":55,"value":1409},{"type":50,"tag":91,"props":7223,"children":7224},{"href":201},[7225],{"type":55,"value":204},{"type":50,"tag":84,"props":7227,"children":7228},{},[7229,7234],{"type":50,"tag":74,"props":7230,"children":7231},{},[7232],{"type":55,"value":7233},"ALL Virtual Methods Must Be Implemented",{"type":50,"tag":136,"props":7235,"children":7236},{},[7237,7242,7247,7252],{"type":50,"tag":84,"props":7238,"children":7239},{},[7240],{"type":55,"value":7241},"Including WIN32-conditional methods",{"type":50,"tag":84,"props":7243,"children":7244},{},[7245],{"type":55,"value":7246},"SDK v6.7.2 requires 6 auth methods + 9 meeting methods",{"type":50,"tag":84,"props":7248,"children":7249},{},[7250],{"type":55,"value":7251},"Different versions have different requirements",{"type":50,"tag":84,"props":7253,"children":7254},{},[7255,7256],{"type":55,"value":1409},{"type":50,"tag":91,"props":7257,"children":7258},{"href":177},[7259],{"type":55,"value":3051},{"type":50,"tag":84,"props":7261,"children":7262},{},[7263,7268],{"type":50,"tag":74,"props":7264,"children":7265},{},[7266],{"type":55,"value":7267},"The Architecture is Beautifully Consistent",{"type":50,"tag":136,"props":7269,"children":7270},{},[7271,7276,7281,7286,7291],{"type":50,"tag":84,"props":7272,"children":7273},{},[7274],{"type":55,"value":7275},"Every feature follows the same 3-step pattern",{"type":50,"tag":84,"props":7277,"children":7278},{},[7279],{"type":55,"value":7280},"Controllers are singletons",{"type":50,"tag":84,"props":7282,"children":7283},{},[7284],{"type":55,"value":7285},"Event listeners use observer pattern",{"type":50,"tag":84,"props":7287,"children":7288},{},[7289],{"type":55,"value":7290},"Once you learn the pattern, you can implement any feature",{"type":50,"tag":84,"props":7292,"children":7293},{},[7294,7295],{"type":55,"value":1409},{"type":50,"tag":91,"props":7296,"children":7297},{"href":93},[7298],{"type":55,"value":96},{"type":50,"tag":5859,"props":7300,"children":7301},{},[],{"type":50,"tag":64,"props":7303,"children":7305},{"id":7304},"learning-path-by-skill-level",[7306],{"type":55,"value":7307},"🎓 Learning Path by Skill Level",{"type":50,"tag":346,"props":7309,"children":7311},{"id":7310},"beginner-never-used-zoom-sdk",[7312],{"type":55,"value":7313},"Beginner (Never used Zoom SDK)",{"type":50,"tag":80,"props":7315,"children":7316},{},[7317,7328,7339],{"type":50,"tag":84,"props":7318,"children":7319},{},[7320,7322,7326],{"type":55,"value":7321},"Read ",{"type":50,"tag":91,"props":7323,"children":7324},{"href":93},[7325],{"type":55,"value":96},{"type":55,"value":7327}," to understand the overall design",{"type":50,"tag":84,"props":7329,"children":7330},{},[7331,7333,7337],{"type":55,"value":7332},"Follow ",{"type":50,"tag":91,"props":7334,"children":7335},{"href":107},[7336],{"type":55,"value":110},{"type":55,"value":7338}," to join your first meeting",{"type":50,"tag":84,"props":7340,"children":7341},{},[7342,7344,7348],{"type":55,"value":7343},"Reference ",{"type":50,"tag":91,"props":7345,"children":7346},{"href":221},[7347],{"type":55,"value":224},{"type":55,"value":7349}," when you hit problems",{"type":50,"tag":346,"props":7351,"children":7353},{"id":7352},"intermediate-familiar-with-sdk-basics",[7354],{"type":55,"value":7355},"Intermediate (Familiar with SDK basics)",{"type":50,"tag":80,"props":7357,"children":7358},{},[7359,7370,7381],{"type":50,"tag":84,"props":7360,"children":7361},{},[7362,7364,7368],{"type":55,"value":7363},"Deep dive into ",{"type":50,"tag":91,"props":7365,"children":7366},{"href":93},[7367],{"type":55,"value":96},{"type":55,"value":7369}," - implement multiple features",{"type":50,"tag":84,"props":7371,"children":7372},{},[7373,7375,7379],{"type":55,"value":7374},"Learn ",{"type":50,"tag":91,"props":7376,"children":7377},{"href":1451},[7378],{"type":55,"value":1454},{"type":55,"value":7380}," for media processing",{"type":50,"tag":84,"props":7382,"children":7383},{},[7384,7386,7390],{"type":55,"value":7385},"Use ",{"type":50,"tag":91,"props":7387,"children":7388},{"href":177},[7389],{"type":55,"value":5622},{"type":55,"value":7391}," as reference",{"type":50,"tag":346,"props":7393,"children":7395},{"id":7394},"advanced-building-production-bots",[7396],{"type":55,"value":7397},"Advanced (Building production bots)",{"type":50,"tag":80,"props":7399,"children":7400},{},[7401,7412,7423],{"type":50,"tag":84,"props":7402,"children":7403},{},[7404,7406,7410],{"type":55,"value":7405},"Study ",{"type":50,"tag":91,"props":7407,"children":7408},{"href":93},[7409],{"type":55,"value":96},{"type":55,"value":7411}," - learn to implement ANY feature",{"type":50,"tag":84,"props":7413,"children":7414},{},[7415,7417,7421],{"type":55,"value":7416},"Master ",{"type":50,"tag":91,"props":7418,"children":7419},{"href":121},[7420],{"type":55,"value":124},{"type":55,"value":7422}," - understand async callback flow",{"type":50,"tag":84,"props":7424,"children":7425},{},[7426],{"type":55,"value":7427},"Reference SDK headers directly using the universal pattern",{"type":50,"tag":5859,"props":7429,"children":7430},{},[],{"type":50,"tag":64,"props":7432,"children":7434},{"id":7433},"how-to-find-what-you-need",[7435],{"type":55,"value":7436},"🔍 How to Find What You Need",{"type":50,"tag":346,"props":7438,"children":7440},{"id":7439},"my-code-wont-compile",[7441],{"type":55,"value":7442},"\"My code won't compile\"",{"type":50,"tag":58,"props":7444,"children":7445},{},[7446,7448],{"type":55,"value":7447},"→ ",{"type":50,"tag":91,"props":7449,"children":7450},{"href":201},[7451],{"type":55,"value":204},{"type":50,"tag":346,"props":7453,"children":7455},{"id":7454},"authentication-times-out",[7456],{"type":55,"value":7457},"\"Authentication times out\"",{"type":50,"tag":58,"props":7459,"children":7460},{},[7461,7462],{"type":55,"value":7447},{"type":50,"tag":91,"props":7463,"children":7464},{"href":121},[7465],{"type":55,"value":124},{"type":50,"tag":346,"props":7467,"children":7469},{"id":7468},"callbacks-never-fire",[7470],{"type":55,"value":7471},"\"Callbacks never fire\"",{"type":50,"tag":58,"props":7473,"children":7474},{},[7475,7476],{"type":55,"value":7447},{"type":50,"tag":91,"props":7477,"children":7478},{"href":121},[7479],{"type":55,"value":124},{"type":50,"tag":346,"props":7481,"children":7483},{"id":7482},"abstract-class-error",[7484],{"type":55,"value":7485},"\"Abstract class error\"",{"type":50,"tag":58,"props":7487,"children":7488},{},[7489,7490],{"type":55,"value":7447},{"type":50,"tag":91,"props":7491,"children":7492},{"href":177},[7493],{"type":55,"value":5622},{"type":50,"tag":346,"props":7495,"children":7497},{"id":7496},"how-do-i-implement-feature",[7498,7500,7504],{"type":55,"value":7499},"\"How do I implement ",{"type":50,"tag":550,"props":7501,"children":7502},{},[7503],{"type":55,"value":4402},{"type":55,"value":7505},"?\"",{"type":50,"tag":58,"props":7507,"children":7508},{},[7509,7510],{"type":55,"value":7447},{"type":50,"tag":91,"props":7511,"children":7512},{"href":93},[7513],{"type":55,"value":96},{"type":50,"tag":346,"props":7515,"children":7517},{"id":7516},"how-do-i-join-a-meeting",[7518],{"type":55,"value":7519},"\"How do I join a meeting?\"",{"type":50,"tag":58,"props":7521,"children":7522},{},[7523,7524],{"type":55,"value":7447},{"type":50,"tag":91,"props":7525,"children":7526},{"href":107},[7527],{"type":55,"value":110},{"type":50,"tag":346,"props":7529,"children":7531},{"id":7530},"how-do-i-capture-video",[7532],{"type":55,"value":7533},"\"How do I capture video?\"",{"type":50,"tag":58,"props":7535,"children":7536},{},[7537,7538],{"type":55,"value":7447},{"type":50,"tag":91,"props":7539,"children":7540},{"href":1451},[7541],{"type":55,"value":1454},{"type":50,"tag":346,"props":7543,"children":7545},{"id":7544},"what-error-code-means-what",[7546],{"type":55,"value":7547},"\"What error code means what?\"",{"type":50,"tag":58,"props":7549,"children":7550},{},[7551,7552,7556],{"type":55,"value":7447},{"type":50,"tag":91,"props":7553,"children":7554},{"href":221},[7555],{"type":55,"value":224},{"type":55,"value":7557}," - Comprehensive error code tables (SDKERR, AUTHRET, Login, BO, Phone, OBF)",{"type":50,"tag":346,"props":7559,"children":7561},{"id":7560},"how-do-i-use-breakout-rooms",[7562],{"type":55,"value":7563},"\"How do I use breakout rooms?\"",{"type":50,"tag":58,"props":7565,"children":7566},{},[7567,7568],{"type":55,"value":7447},{"type":50,"tag":91,"props":7569,"children":7570},{"href":6402},[7571],{"type":55,"value":6405},{"type":50,"tag":346,"props":7573,"children":7575},{"id":7574},"how-does-the-sdk-work",[7576],{"type":55,"value":7577},"\"How does the SDK work?\"",{"type":50,"tag":58,"props":7579,"children":7580},{},[7581,7582],{"type":55,"value":7447},{"type":50,"tag":91,"props":7583,"children":7584},{"href":93},[7585],{"type":55,"value":96},{"type":50,"tag":346,"props":7587,"children":7589},{"id":7588},"how-do-i-navigate-to-a-specific-controllerfeature",[7590],{"type":55,"value":7591},"\"How do I navigate to a specific controller\u002Ffeature?\"",{"type":50,"tag":58,"props":7593,"children":7594},{},[7595,7596],{"type":55,"value":7447},{"type":50,"tag":91,"props":7597,"children":7598},{"href":6616},[7599],{"type":55,"value":6619},{"type":50,"tag":346,"props":7601,"children":7603},{"id":7602},"how-do-i-sendreceive-chat-messages",[7604],{"type":55,"value":7605},"\"How do I send\u002Freceive chat messages?\"",{"type":50,"tag":58,"props":7607,"children":7608},{},[7609,7610],{"type":55,"value":7447},{"type":50,"tag":91,"props":7611,"children":7612},{"href":6444},[7613],{"type":55,"value":6447},{"type":50,"tag":346,"props":7615,"children":7617},{"id":7616},"how-do-i-use-live-transcription",[7618],{"type":55,"value":7619},"\"How do I use live transcription?\"",{"type":50,"tag":58,"props":7621,"children":7622},{},[7623,7624],{"type":55,"value":7447},{"type":50,"tag":91,"props":7625,"children":7626},{"href":6482},[7627],{"type":55,"value":6485},{"type":50,"tag":346,"props":7629,"children":7631},{"id":7630},"how-do-i-record-locally",[7632],{"type":55,"value":7633},"\"How do I record locally?\"",{"type":50,"tag":58,"props":7635,"children":7636},{},[7637,7638],{"type":55,"value":7447},{"type":50,"tag":91,"props":7639,"children":7640},{"href":6520},[7641],{"type":55,"value":6523},{"type":50,"tag":346,"props":7643,"children":7645},{"id":7644},"how-do-i-capture-screen-share",[7646],{"type":55,"value":7647},"\"How do I capture screen share?\"",{"type":50,"tag":58,"props":7649,"children":7650},{},[7651,7652],{"type":55,"value":7447},{"type":50,"tag":91,"props":7653,"children":7654},{"href":6351},[7655],{"type":55,"value":6354},{"type":50,"tag":5859,"props":7657,"children":7658},{},[],{"type":50,"tag":64,"props":7660,"children":7662},{"id":7661},"document-version",[7663],{"type":55,"value":7664},"📝 Document Version",{"type":50,"tag":58,"props":7666,"children":7667},{},[7668,7670,7675],{"type":55,"value":7669},"All documents are based on ",{"type":50,"tag":74,"props":7671,"children":7672},{},[7673],{"type":55,"value":7674},"Zoom Windows Meeting SDK v6.7.2.26830",{"type":55,"value":7676},".",{"type":50,"tag":58,"props":7678,"children":7679},{},[7680],{"type":55,"value":7681},"Different SDK versions may have:",{"type":50,"tag":136,"props":7683,"children":7684},{},[7685,7690,7695],{"type":50,"tag":84,"props":7686,"children":7687},{},[7688],{"type":55,"value":7689},"Different required callback methods",{"type":50,"tag":84,"props":7691,"children":7692},{},[7693],{"type":55,"value":7694},"Different error codes",{"type":50,"tag":84,"props":7696,"children":7697},{},[7698],{"type":55,"value":7699},"Different API behavior",{"type":50,"tag":58,"props":7701,"children":7702},{},[7703,7705,7711],{"type":55,"value":7704},"If using a different version, use ",{"type":50,"tag":353,"props":7706,"children":7708},{"className":7707},[],[7709],{"type":55,"value":7710},"grep \"= 0\" SDK\u002Fx64\u002Fh\u002F*.h",{"type":55,"value":7712}," to verify required methods.",{"type":50,"tag":5859,"props":7714,"children":7715},{},[],{"type":50,"tag":58,"props":7717,"children":7718},{},[7719,7721,7725],{"type":55,"value":7720},"Remember: The ",{"type":50,"tag":91,"props":7722,"children":7723},{"href":93},[7724],{"type":55,"value":96},{"type":55,"value":7726}," is the fastest way to understand how the Windows Meeting SDK fits together. Read it first if you are debugging custom UI or event flow issues.",{"type":50,"tag":64,"props":7728,"children":7730},{"id":7729},"operations",[7731],{"type":55,"value":7732},"Operations",{"type":50,"tag":136,"props":7734,"children":7735},{},[7736],{"type":50,"tag":84,"props":7737,"children":7738},{},[7739,7744],{"type":50,"tag":91,"props":7740,"children":7742},{"href":7741},"RUNBOOK.md",[7743],{"type":55,"value":7741},{"type":55,"value":7745}," - 5-minute preflight and debugging checklist.",{"type":50,"tag":7747,"props":7748,"children":7749},"style",{},[7750],{"type":55,"value":7751},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":7753,"total":7940},[7754,7775,7789,7801,7820,7833,7854,7874,7888,7903,7911,7924],{"slug":7755,"name":7755,"fn":7756,"description":7757,"org":7758,"tags":7759,"stars":7772,"repoUrl":7773,"updatedAt":7774},"algorithmic-art","create algorithmic art with p5.js","Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems. Create original algorithmic art rather than copying existing artists' work to avoid copyright violations.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[7760,7763,7766,7769],{"name":7761,"slug":7762,"type":16},"Creative","creative",{"name":7764,"slug":7765,"type":16},"Design","design",{"name":7767,"slug":7768,"type":16},"Generative Art","generative-art",{"name":7770,"slug":7771,"type":16},"JavaScript","javascript",161831,"https:\u002F\u002Fgithub.com\u002Fanthropics\u002Fskills","2026-04-06T17:56:15.455818",{"slug":7776,"name":7776,"fn":7777,"description":7778,"org":7779,"tags":7780,"stars":7772,"repoUrl":7773,"updatedAt":7788},"brand-guidelines","apply Anthropic brand colors and typography","Applies Anthropic's official brand colors and typography to any sort of artifact that may benefit from having Anthropic's look-and-feel. Use it when brand colors or style guidelines, visual formatting, or company design standards apply.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[7781,7784,7785],{"name":7782,"slug":7783,"type":16},"Branding","branding",{"name":7764,"slug":7765,"type":16},{"name":7786,"slug":7787,"type":16},"Typography","typography","2026-04-06T17:56:05.042852",{"slug":7790,"name":7790,"fn":7791,"description":7792,"org":7793,"tags":7794,"stars":7772,"repoUrl":7773,"updatedAt":7800},"canvas-design","create posters and visual art as PNG or PDF","Create beautiful visual art in .png and .pdf documents using design philosophy. You should use this skill when the user asks to create a poster, piece of art, design, or other static piece. Create original visual designs, never copying existing artists' work to avoid copyright violations.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[7795,7796,7797],{"name":7761,"slug":7762,"type":16},{"name":7764,"slug":7765,"type":16},{"name":7798,"slug":7799,"type":16},"PDF","pdf","2026-04-06T17:56:03.794732",{"slug":7802,"name":7802,"fn":7803,"description":7804,"org":7805,"tags":7806,"stars":7772,"repoUrl":7773,"updatedAt":7819},"claude-api","build apps with the Claude API","Reference for the Claude API \u002F Anthropic SDK — model ids, pricing, params, streaming, tool use, MCP, agents, caching, token counting, model migration.\nTRIGGER — read BEFORE opening the target file; don't skip because it \"looks like a one-liner\" — whenever: the prompt names Claude\u002FAnthropic in any form (Claude, Anthropic, Fable, Opus, Sonnet, Haiku, `anthropic`, `@anthropic-ai`, `claude-*`, `us.anthropic.*`, `[1m]`); the user asks about an LLM (pricing\u002Fmodel choice\u002Flimits\u002Fcaching) — never answer from memory; OR the task is LLM-shaped with provider unstated (agent\u002FMCP\u002Ftool-definition\u002Fmulti-agent\u002FRAG\u002FLLM-judge\u002Fcomputer-use; generate\u002Fsummarize\u002Fextract\u002Fclassify\u002Frewrite\u002Fconverse over NL; debugging refusals\u002Fcutoffs\u002Fstreaming\u002Ftool-calls\u002Ftokens).\nSKIP only when another provider is being worked on (overrides all triggers): OpenAI\u002FGPT\u002FGemini\u002FLlama\u002FMistral\u002FCohere\u002FOllama named in the query; OR `grep -rE 'openai|langchain_openai|google.generativeai|genai|mistralai|cohere|ollama'` over the project hits (run this grep FIRST if no provider named — don't Read the file).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[7807,7810,7811,7814,7816],{"name":7808,"slug":7809,"type":16},"Agents","agents",{"name":9,"slug":8,"type":16},{"name":7812,"slug":7813,"type":16},"Anthropic SDK","anthropic-sdk",{"name":7815,"slug":7802,"type":16},"Claude API",{"name":7817,"slug":7818,"type":16},"LLM","llm","2026-07-28T05:36:08.213335",{"slug":7821,"name":7821,"fn":7822,"description":7823,"org":7824,"tags":7825,"stars":7772,"repoUrl":7773,"updatedAt":7832},"doc-coauthoring","co-author documentation and technical specs","Guide users through a structured workflow for co-authoring documentation. Use when user wants to write documentation, proposals, technical specs, decision docs, or similar structured content. This workflow helps users efficiently transfer context, refine content through iteration, and verify the doc works for readers. Trigger when user mentions writing docs, creating proposals, drafting specs, or similar documentation tasks.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[7826,7829],{"name":7827,"slug":7828,"type":16},"Documentation","documentation",{"name":7830,"slug":7831,"type":16},"Technical Writing","technical-writing","2026-04-06T17:56:14.18897",{"slug":7834,"name":7834,"fn":7835,"description":7836,"org":7837,"tags":7838,"stars":7772,"repoUrl":7773,"updatedAt":7853},"docx","create and edit Word documents","Use this skill whenever the user wants to create, read, edit, or manipulate Word documents (.docx files) or Word templates (.dotx files). Triggers include: any mention of 'Word doc', 'word document', '.docx', '.dotx', or requests to produce professional documents with formatting like tables of contents, headings, page numbers, or letterheads. Also use when extracting or reorganizing content from .docx or .dotx files, inserting or replacing images in documents, performing find-and-replace in Word files, working with tracked changes or comments, or converting content into a polished Word document. If the user asks for a 'report', 'memo', 'letter', 'template', or similar deliverable as a Word or .docx file, use this skill. Do NOT use for PDFs, spreadsheets, Google Docs, or general coding tasks unrelated to document generation.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[7839,7842,7844,7847,7850],{"name":7840,"slug":7841,"type":16},"Documents","documents",{"name":7843,"slug":7834,"type":16},"DOCX",{"name":7845,"slug":7846,"type":16},"Office","office",{"name":7848,"slug":7849,"type":16},"Templates","templates",{"name":7851,"slug":7852,"type":16},"Word","word","2026-07-18T05:16:23.136271",{"slug":7855,"name":7855,"fn":7856,"description":7857,"org":7858,"tags":7859,"stars":7772,"repoUrl":7773,"updatedAt":7873},"frontend-design","design production-grade frontend interfaces","Guidance for distinctive, intentional visual design when building new UI or reshaping an existing one. Helps with aesthetic direction, typography, and making choices that don't read as templated defaults.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[7860,7861,7864,7867,7870],{"name":7764,"slug":7765,"type":16},{"name":7862,"slug":7863,"type":16},"Frontend","frontend",{"name":7865,"slug":7866,"type":16},"React","react",{"name":7868,"slug":7869,"type":16},"Tailwind CSS","tailwind-css",{"name":7871,"slug":7872,"type":16},"UI Components","ui-components","2026-04-06T17:56:16.723469",{"slug":7875,"name":7875,"fn":7876,"description":7877,"org":7878,"tags":7879,"stars":7772,"repoUrl":7773,"updatedAt":7887},"internal-comms","write internal company communications","A set of resources to help me write all kinds of internal communications, using the formats that my company likes to use. Claude should use this skill whenever asked to write some sort of internal communications (status reports, leadership updates, 3P updates, company newsletters, FAQs, incident reports, project updates, etc.).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[7880,7883,7884],{"name":7881,"slug":7882,"type":16},"Communications","communications",{"name":7848,"slug":7849,"type":16},{"name":7885,"slug":7886,"type":16},"Writing","writing","2026-04-06T17:56:20.695522",{"slug":7889,"name":7889,"fn":7890,"description":7891,"org":7892,"tags":7893,"stars":7772,"repoUrl":7773,"updatedAt":7902},"mcp-builder","build MCP servers","Guide for creating high-quality MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools. Use when building MCP servers to integrate external APIs or services, whether in Python (FastMCP) or Node\u002FTypeScript (MCP SDK).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[7894,7895,7898,7899],{"name":7808,"slug":7809,"type":16},{"name":7896,"slug":7897,"type":16},"API Development","api-development",{"name":7817,"slug":7818,"type":16},{"name":7900,"slug":7901,"type":16},"MCP","mcp","2026-04-06T17:56:10.357665",{"slug":7799,"name":7799,"fn":7904,"description":7905,"org":7906,"tags":7907,"stars":7772,"repoUrl":7773,"updatedAt":7910},"read edit and manipulate PDF files","Use this skill whenever the user wants to do anything with PDF files. This includes reading or extracting text\u002Ftables from PDFs, combining or merging multiple PDFs into one, splitting PDFs apart, rotating pages, adding watermarks, creating new PDFs, filling PDF forms, encrypting\u002Fdecrypting PDFs, extracting images, and OCR on scanned PDFs to make them searchable. If the user mentions a .pdf file or asks to produce one, use this skill.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[7908,7909],{"name":7840,"slug":7841,"type":16},{"name":7798,"slug":7799,"type":16},"2026-04-06T17:56:02.483316",{"slug":7912,"name":7912,"fn":7913,"description":7914,"org":7915,"tags":7916,"stars":7772,"repoUrl":7773,"updatedAt":7923},"pptx","create and edit PowerPoint presentations","Use this skill any time a .pptx or .potx file is involved in any way — as input, output, or both. This includes: creating slide decks, pitch decks, or presentations; reading, parsing, or extracting text from any .pptx or .potx file (even if the extracted content will be used elsewhere, like in an email or summary); editing, modifying, or updating existing presentations; combining or splitting slide files; working with templates (.potx), layouts, speaker notes, or comments. Trigger whenever the user mentions \"deck,\" \"slides,\" \"presentation,\" or references a .pptx or .potx filename, regardless of what they plan to do with the content afterward. If a .pptx or .potx file needs to be opened, created, or touched, use this skill.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[7917,7920],{"name":7918,"slug":7919,"type":16},"PowerPoint","powerpoint",{"name":7921,"slug":7922,"type":16},"Presentations","presentations","2026-07-18T05:16:24.1471",{"slug":7925,"name":7925,"fn":7926,"description":7927,"org":7928,"tags":7929,"stars":7772,"repoUrl":7773,"updatedAt":7939},"skill-creator","create and optimize agent skills","Create new skills, modify and improve existing skills, and measure skill performance. Use when users want to create a skill from scratch, edit, or optimize an existing skill, run evals to test a skill, benchmark skill performance with variance analysis, or optimize a skill's description for better triggering accuracy.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[7930,7931,7932,7935,7938],{"name":7808,"slug":7809,"type":16},{"name":7827,"slug":7828,"type":16},{"name":7933,"slug":7934,"type":16},"Evals","evals",{"name":7936,"slug":7937,"type":16},"Performance","performance",{"name":7830,"slug":7831,"type":16},"2026-04-19T06:45:40.804",490,{"items":7942,"total":8049},[7943,7957,7973,7989,8005,8024,8036],{"slug":7944,"name":7944,"fn":7945,"description":7946,"org":7947,"tags":7948,"stars":26,"repoUrl":27,"updatedAt":7956},"accessibility-review","run WCAG accessibility audits","Run a WCAG 2.1 AA accessibility audit on a design or page. Trigger with \"audit accessibility\", \"check a11y\", \"is this accessible?\", or when reviewing a design for color contrast, keyboard navigation, touch target size, or screen reader behavior before handoff.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[7949,7952,7953],{"name":7950,"slug":7951,"type":16},"Accessibility","accessibility",{"name":7764,"slug":7765,"type":16},{"name":7954,"slug":7955,"type":16},"WCAG","wcag","2026-04-06T17:58:05.682394",{"slug":7958,"name":7958,"fn":7959,"description":7960,"org":7961,"tags":7962,"stars":26,"repoUrl":27,"updatedAt":7972},"account-research","research accounts for sales intel","Research a company or person and get actionable sales intel. Works standalone with web search, supercharged when you connect enrichment tools or your CRM. Trigger with \"research [company]\", \"look up [person]\", \"intel on [prospect]\", \"who is [name] at [company]\", or \"tell me about [company]\".",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[7963,7966,7969],{"name":7964,"slug":7965,"type":16},"CRM","crm",{"name":7967,"slug":7968,"type":16},"Research","research",{"name":7970,"slug":7971,"type":16},"Sales","sales","2026-04-06T17:56:41.410418",{"slug":7974,"name":7974,"fn":7975,"description":7976,"org":7977,"tags":7978,"stars":26,"repoUrl":27,"updatedAt":7988},"analyze","answer data questions and run analyses","Answer data questions -- from quick lookups to full analyses. Use when looking up a single metric, investigating what's driving a trend or drop, comparing segments over time, or preparing a formal data report for stakeholders.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[7979,7982,7985],{"name":7980,"slug":7981,"type":16},"Analytics","analytics",{"name":7983,"slug":7984,"type":16},"Data Analysis","data-analysis",{"name":7986,"slug":7987,"type":16},"SQL","sql","2026-04-06T17:57:21.593647",{"slug":7990,"name":7990,"fn":7991,"description":7992,"org":7993,"tags":7994,"stars":26,"repoUrl":27,"updatedAt":8004},"architecture","create and evaluate architecture decision records","Create or evaluate an architecture decision record (ADR). Use when choosing between technologies (e.g., Kafka vs SQS), documenting a design decision with trade-offs and consequences, reviewing a system design proposal, or designing a new component from requirements and constraints.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[7995,7998,8000,8001],{"name":7996,"slug":7997,"type":16},"ADR","adr",{"name":7999,"slug":7990,"type":16},"Architecture",{"name":7827,"slug":7828,"type":16},{"name":8002,"slug":8003,"type":16},"Engineering","engineering","2026-04-06T17:57:49.26444",{"slug":8006,"name":8006,"fn":8007,"description":8008,"org":8009,"tags":8010,"stars":26,"repoUrl":27,"updatedAt":8023},"audit-support","support SOX 404 control testing","Support SOX 404 compliance with control testing methodology, sample selection, and documentation standards. Use when generating testing workpapers, selecting audit samples, classifying control deficiencies, or preparing for internal or external audits.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[8011,8014,8017,8020],{"name":8012,"slug":8013,"type":16},"Audit","audit",{"name":8015,"slug":8016,"type":16},"Finance","finance",{"name":8018,"slug":8019,"type":16},"Regulatory Compliance","regulatory-compliance",{"name":8021,"slug":8022,"type":16},"SOX","sox","2026-04-06T17:57:36.714815",{"slug":8025,"name":8025,"fn":8026,"description":8027,"org":8028,"tags":8029,"stars":26,"repoUrl":27,"updatedAt":8035},"brand-review","review content against brand voice","Review content against your brand voice, style guide, and messaging pillars, flagging deviations by severity with specific before\u002Fafter fixes. Use when checking a draft before it ships, when auditing copy for voice consistency and terminology, or when screening for unsubstantiated claims, missing disclaimers, and other legal flags.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[8030,8031,8034],{"name":7782,"slug":7783,"type":16},{"name":8032,"slug":8033,"type":16},"Marketing","marketing",{"name":7885,"slug":7886,"type":16},"2026-04-06T17:58:19.548331",{"slug":8037,"name":8037,"fn":8038,"description":8039,"org":8040,"tags":8041,"stars":26,"repoUrl":27,"updatedAt":8048},"brand-voice-enforcement","enforce brand voice in content","This skill applies brand guidelines to content creation. It should be used when the user asks to \"write an email\", \"draft a proposal\", \"create a pitch deck\", \"write a LinkedIn post\", \"draft a presentation\", \"write a Slack message\", \"draft sales content\", or any content creation request where brand voice should be applied. Also triggers on \"on-brand\", \"brand voice\", \"enforce voice\", \"apply brand guidelines\", \"brand-aligned content\", \"write in our voice\", \"use our brand tone\", \"make this sound like us\", \"rewrite this in our tone\", or \"this doesn't sound on-brand\". Not for generating guidelines from scratch (use guideline-generation) or discovering brand materials (use discover-brand).\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[8042,8043,8044,8047],{"name":7782,"slug":7783,"type":16},{"name":7881,"slug":7882,"type":16},{"name":8045,"slug":8046,"type":16},"Content Creation","content-creation",{"name":7885,"slug":7886,"type":16},"2026-04-06T18:00:23.528956",200]