Changeset 100646 in vbox for trunk/src/VBox
- Timestamp:
- Jul 19, 2023 8:49:56 AM (20 months ago)
- svn:sync-xref-src-repo-rev:
- 158483
- Location:
- trunk/src/VBox/HostServices/SharedClipboard
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/SharedClipboard/VBoxSharedClipboardSvc-darwin.cpp
r100204 r100646 96 96 && fChanged 97 97 && ShClSvcIsBackendActive()) 98 rc = ShClSvc HostReportFormats(pCtx->pClient, fFormats);98 rc = ShClSvcReportFormats(pCtx->pClient, fFormats); 99 99 100 100 LogFlowFuncLeaveRC(rc); -
trunk/src/VBox/HostServices/SharedClipboard/VBoxSharedClipboardSvc-internal.h
r100619 r100646 313 313 int ShClSvcReadDataFromGuest(PSHCLCLIENT pClient, SHCLFORMAT uFmt, void **ppv, uint32_t *pcb); 314 314 int ShClSvcGuestDataSignal(PSHCLCLIENT pClient, PSHCLCLIENTCMDCTX pCmdCtx, SHCLFORMAT uFormat, void *pvData, uint32_t cbData); 315 int ShClSvc HostReportFormats(PSHCLCLIENT pClient, SHCLFORMATS fFormats);315 int ShClSvcReportFormats(PSHCLCLIENT pClient, SHCLFORMATS fFormats); 316 316 PSHCLBACKEND ShClSvcGetBackend(void); 317 317 uint32_t ShClSvcGetMode(void); -
trunk/src/VBox/HostServices/SharedClipboard/VBoxSharedClipboardSvc-win.cpp
r100552 r100646 792 792 && fFormats != VBOX_SHCL_FMT_NONE /** @todo r=bird: BUGBUG: revisit this. */ 793 793 && ShClSvcIsBackendActive()) 794 rc = ShClSvc HostReportFormats(pCtx->pClient, fFormats);794 rc = ShClSvcReportFormats(pCtx->pClient, fFormats); 795 795 } 796 796 else /* If we don't have any client data (yet), bail out. */ -
trunk/src/VBox/HostServices/SharedClipboard/VBoxSharedClipboardSvc-x11.cpp
r100393 r100646 221 221 * the guest when the clipboard starts up. */ 222 222 if (ShClSvcIsBackendActive()) 223 return ShClSvc HostReportFormats(pClient, VBOX_SHCL_FMT_NONE);223 return ShClSvcReportFormats(pClient, VBOX_SHCL_FMT_NONE); 224 224 return VINF_SUCCESS; 225 225 } … … 377 377 if (fFormats != VBOX_SHCL_FMT_NONE) /* No formats to report? */ 378 378 { 379 rc = ShClSvc HostReportFormats(pCtx->pClient, fFormats);379 rc = ShClSvcReportFormats(pCtx->pClient, fFormats); 380 380 } 381 381 } -
trunk/src/VBox/HostServices/SharedClipboard/VBoxSharedClipboardSvc.cpp
r100619 r100646 1484 1484 * @thread Backend thread. 1485 1485 */ 1486 int ShClSvc HostReportFormats(PSHCLCLIENT pClient, SHCLFORMATS fFormats)1486 int ShClSvcReportFormats(PSHCLCLIENT pClient, SHCLFORMATS fFormats) 1487 1487 { 1488 1488 LogFlowFuncEnter(); … … 1775 1775 if (g_ExtState.fDelayedAnnouncement) 1776 1776 { 1777 int rc2 = ShClSvc HostReportFormats(pClient, g_ExtState.fDelayedFormats);1777 int rc2 = ShClSvcReportFormats(pClient, g_ExtState.fDelayedFormats); 1778 1778 AssertRC(rc2); 1779 1779 … … 2735 2735 LogFlowFunc(("VBOX_CLIPBOARD_EXT_FN_FORMAT_ANNOUNCE: g_ExtState.fReadingData=%RTbool\n", g_ExtState.fReadingData)); 2736 2736 if (!g_ExtState.fReadingData) 2737 rc = ShClSvc HostReportFormats(pClient, u32Format);2737 rc = ShClSvcReportFormats(pClient, u32Format); 2738 2738 else 2739 2739 {
Note:
See TracChangeset
for help on using the changeset viewer.