Changeset 81133 in vbox for trunk/src/VBox/HostServices/SharedClipboard
- Timestamp:
- Oct 7, 2019 7:41:06 PM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 133765
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/SharedClipboard/VBoxSharedClipboardSvc.cpp
r80997 r81133 92 92 * 93 93 * At the moment a transfer is a all-or-nothing operation, e.g. it either 94 * completes or fails completely. There might be callbacks in the future94 * completes or fails completely. There might be callbacks in the future 95 95 * to e.g. skip failing entries. 96 96 * … … 1128 1128 ShClSvcImplDisconnect(pClient); 1129 1129 1130 /* Make sure to send a quit message to the guest so that it can terminate gracefully. */ 1131 if (pClient->Pending.uType) 1132 { 1133 if (pClient->Pending.cParms >= 2) 1134 { 1135 HGCMSvcSetU32(&pClient->Pending.paParms[0], VBOX_SHCL_HOST_MSG_QUIT); 1136 HGCMSvcSetU32(&pClient->Pending.paParms[1], 0); 1137 } 1138 g_pHelpers->pfnCallComplete(pClient->Pending.hHandle, VINF_SUCCESS); 1139 pClient->Pending.uType = 0; 1140 } 1141 1130 1142 shclSvcClientStateReset(&pClient->State); 1131 1143 shclSvcClientStateDestroy(&pClient->State);
Note:
See TracChangeset
for help on using the changeset viewer.