summaryrefslogtreecommitdiff
path: root/src/VBox/HostServices/SharedClipboard/VBoxSharedClipboardSvc-win.cpp
diff options
context:
space:
mode:
authorvboxsync <vboxsync@cfe28804-0f27-0410-a406-dd0f0b0b656f>2019-10-22 13:23:50 +0000
committervboxsync <vboxsync@cfe28804-0f27-0410-a406-dd0f0b0b656f>2019-10-22 13:23:50 +0000
commit7eeab03c0dfded2dafd2329a6a3987aff280de81 (patch)
tree4953c25b16e90655bc2d62fde39fe813a10c8059 /src/VBox/HostServices/SharedClipboard/VBoxSharedClipboardSvc-win.cpp
parentd316254cdc249d92f957d801c1d323571552ef5a (diff)
downloadVirtualBox-svn-7eeab03c0dfded2dafd2329a6a3987aff280de81.tar.gz
Shared Clipboard/Svc: Some renaming.
git-svn-id: https://www.virtualbox.org/svn/vbox/trunk@81451 cfe28804-0f27-0410-a406-dd0f0b0b656f
Diffstat (limited to 'src/VBox/HostServices/SharedClipboard/VBoxSharedClipboardSvc-win.cpp')
-rw-r--r--src/VBox/HostServices/SharedClipboard/VBoxSharedClipboardSvc-win.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/VBox/HostServices/SharedClipboard/VBoxSharedClipboardSvc-win.cpp b/src/VBox/HostServices/SharedClipboard/VBoxSharedClipboardSvc-win.cpp
index 2c9457e02eb..bf298fd0002 100644
--- a/src/VBox/HostServices/SharedClipboard/VBoxSharedClipboardSvc-win.cpp
+++ b/src/VBox/HostServices/SharedClipboard/VBoxSharedClipboardSvc-win.cpp
@@ -178,7 +178,7 @@ static int vboxClipboardSvcWinDataRead(PSHCLCONTEXT pCtx, UINT cfFormat,
dataReq.cbSize = _64K; /** @todo Make this more dynamic. */
SHCLEVENTID uEvent = 0;
- int rc = shclSvcDataReadRequest(pCtx->pClient, &dataReq, &uEvent);
+ int rc = shClSvcDataReadRequest(pCtx->pClient, &dataReq, &uEvent);
if (RT_SUCCESS(rc))
{
PSHCLEVENTPAYLOAD pPayload;
@@ -230,7 +230,7 @@ static LRESULT CALLBACK vboxClipboardSvcWinWndProcMain(PSHCLCONTEXT pCtx,
/* Clipboard was updated by another application, retrieve formats and report back. */
rc = vboxClipboardSvcWinSyncInternal(pCtx);
if (RT_SUCCESS(rc))
- rc = shclSvcSetSource(pCtx->pClient, SHCLSOURCE_LOCAL);
+ rc = shClSvcSetSource(pCtx->pClient, SHCLSOURCE_LOCAL);
}
else
{
@@ -272,7 +272,7 @@ static LRESULT CALLBACK vboxClipboardSvcWinWndProcMain(PSHCLCONTEXT pCtx,
/* Clipboard was updated by another application, retrieve formats and report back. */
rc = vboxClipboardSvcWinSyncInternal(pCtx);
if (RT_SUCCESS(rc))
- shclSvcSetSource(pCtx->pClient, SHCLSOURCE_LOCAL);
+ shClSvcSetSource(pCtx->pClient, SHCLSOURCE_LOCAL);
}
else
{
@@ -356,7 +356,7 @@ static LRESULT CALLBACK vboxClipboardSvcWinWndProcMain(PSHCLCONTEXT pCtx,
if (fFormats & VBOX_SHCL_FMT_URI_LIST)
{
PSHCLTRANSFER pTransfer;
- int rc = shclSvcTransferStart(pCtx->pClient,
+ int rc = shClSvcTransferStart(pCtx->pClient,
SHCLTRANSFERDIR_READ, SHCLSOURCE_REMOTE,
&pTransfer);
if (RT_SUCCESS(rc))
@@ -590,7 +590,7 @@ static int vboxClipboardSvcWinSyncInternal(PSHCLCONTEXT pCtx)
if ( RT_SUCCESS(rc)
&& Formats.uFormats != VBOX_SHCL_FMT_NONE)
{
- rc = shclSvcFormatsReport(pCtx->pClient, &Formats);
+ rc = shClSvcFormatsReport(pCtx->pClient, &Formats);
}
}
else /* If we don't have any client data (yet), bail out. */
@@ -863,7 +863,7 @@ int ShClSvcImplWriteData(PSHCLCLIENT pClient, PSHCLCLIENTCMDCTX pCmdCtx,
{
LogFlowFuncEnter();
- int rc = shclSvcDataReadSignal(pClient, pCmdCtx, pData);
+ int rc = shClSvcDataReadSignal(pClient, pCmdCtx, pData);
LogFlowFuncLeaveRC(rc);
return rc;