Changeset 81559 in vbox for trunk/src/VBox/Additions/WINNT/VBoxTray
- Timestamp:
- Oct 28, 2019 10:09:35 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxClipboard.cpp
r81369 r81559 960 960 const PSHCLWINCTX pWinCtx = &pCtx->Win; 961 961 962 LogRel2(("Shared Clipboard: Worker loop running , using protocol v%RU32\n", pCtx->CmdCtx.uProtocolVer));962 LogRel2(("Shared Clipboard: Worker loop running\n")); 963 963 964 964 #ifdef VBOX_WITH_SHARED_CLIPBOARD_TRANSFERS … … 975 975 int rc; 976 976 977 LogFlowFunc(("uProtocolVer=%RU32\n", pCtx->CmdCtx.uProtocolVer));978 979 977 uint32_t uMsg; 980 978 uint32_t uFormats; … … 985 983 PVBGLR3CLIPBOARDEVENT pEvent = NULL; 986 984 987 LogFlowFunc(("Waiting for host message ( protocol v%RU32) ...\n", pCtx->CmdCtx.uProtocolVer));988 989 if (pCtx->CmdCtx. uProtocolVer == 0) /* Legacy protocol */985 LogFlowFunc(("Waiting for host message (fHostFeatures=%#RX64) ...\n", pCtx->CmdCtx.fHostFeatures)); 986 987 if (pCtx->CmdCtx.fUseLegacyProtocol) 990 988 { 991 989 rc = VbglR3ClipboardGetHostMsgOld(pCtx->CmdCtx.uClientID, &uMsg, &uFormats); … … 1030 1028 } 1031 1029 } 1032 else /* Protocol >= v1. */1030 else /* Host service has peeking for messages support. */ 1033 1031 { 1034 1032 pEvent = (PVBGLR3CLIPBOARDEVENT)RTMemAllocZ(sizeof(VBGLR3CLIPBOARDEVENT));
Note:
See TracChangeset
for help on using the changeset viewer.