VirtualBox

Changeset 100646 in vbox for trunk/src/VBox


Ignore:
Timestamp:
Jul 19, 2023 8:49:56 AM (20 months ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
158483
Message:

Shared Clipboard: Renaming (ShClSvcHostReportFormats -> ShClSvcReportFormats), to match the other functions. bugref:9437

Location:
trunk/src/VBox/HostServices/SharedClipboard
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/HostServices/SharedClipboard/VBoxSharedClipboardSvc-darwin.cpp

    r100204 r100646  
    9696        && fChanged
    9797        && ShClSvcIsBackendActive())
    98         rc = ShClSvcHostReportFormats(pCtx->pClient, fFormats);
     98        rc = ShClSvcReportFormats(pCtx->pClient, fFormats);
    9999
    100100    LogFlowFuncLeaveRC(rc);
  • trunk/src/VBox/HostServices/SharedClipboard/VBoxSharedClipboardSvc-internal.h

    r100619 r100646  
    313313int ShClSvcReadDataFromGuest(PSHCLCLIENT pClient, SHCLFORMAT uFmt, void **ppv, uint32_t *pcb);
    314314int ShClSvcGuestDataSignal(PSHCLCLIENT pClient, PSHCLCLIENTCMDCTX pCmdCtx, SHCLFORMAT uFormat, void *pvData, uint32_t cbData);
    315 int ShClSvcHostReportFormats(PSHCLCLIENT pClient, SHCLFORMATS fFormats);
     315int ShClSvcReportFormats(PSHCLCLIENT pClient, SHCLFORMATS fFormats);
    316316PSHCLBACKEND ShClSvcGetBackend(void);
    317317uint32_t ShClSvcGetMode(void);
  • trunk/src/VBox/HostServices/SharedClipboard/VBoxSharedClipboardSvc-win.cpp

    r100552 r100646  
    792792            && fFormats != VBOX_SHCL_FMT_NONE /** @todo r=bird: BUGBUG: revisit this. */
    793793            && ShClSvcIsBackendActive())
    794             rc = ShClSvcHostReportFormats(pCtx->pClient, fFormats);
     794            rc = ShClSvcReportFormats(pCtx->pClient, fFormats);
    795795    }
    796796    else /* If we don't have any client data (yet), bail out. */
  • trunk/src/VBox/HostServices/SharedClipboard/VBoxSharedClipboardSvc-x11.cpp

    r100393 r100646  
    221221     * the guest when the clipboard starts up. */
    222222    if (ShClSvcIsBackendActive())
    223         return ShClSvcHostReportFormats(pClient, VBOX_SHCL_FMT_NONE);
     223        return ShClSvcReportFormats(pClient, VBOX_SHCL_FMT_NONE);
    224224    return VINF_SUCCESS;
    225225}
     
    377377            if (fFormats != VBOX_SHCL_FMT_NONE) /* No formats to report? */
    378378            {
    379                 rc = ShClSvcHostReportFormats(pCtx->pClient, fFormats);
     379                rc = ShClSvcReportFormats(pCtx->pClient, fFormats);
    380380            }
    381381        }
  • trunk/src/VBox/HostServices/SharedClipboard/VBoxSharedClipboardSvc.cpp

    r100619 r100646  
    14841484 * @thread  Backend thread.
    14851485 */
    1486 int ShClSvcHostReportFormats(PSHCLCLIENT pClient, SHCLFORMATS fFormats)
     1486int ShClSvcReportFormats(PSHCLCLIENT pClient, SHCLFORMATS fFormats)
    14871487{
    14881488    LogFlowFuncEnter();
     
    17751775        if (g_ExtState.fDelayedAnnouncement)
    17761776        {
    1777             int rc2 = ShClSvcHostReportFormats(pClient, g_ExtState.fDelayedFormats);
     1777            int rc2 = ShClSvcReportFormats(pClient, g_ExtState.fDelayedFormats);
    17781778            AssertRC(rc2);
    17791779
     
    27352735                LogFlowFunc(("VBOX_CLIPBOARD_EXT_FN_FORMAT_ANNOUNCE: g_ExtState.fReadingData=%RTbool\n", g_ExtState.fReadingData));
    27362736                if (!g_ExtState.fReadingData)
    2737                     rc = ShClSvcHostReportFormats(pClient, u32Format);
     2737                    rc = ShClSvcReportFormats(pClient, u32Format);
    27382738                else
    27392739                {
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette