Changeset 80447 in vbox for trunk/src/VBox
- Timestamp:
- Aug 27, 2019 6:09:09 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/SharedClipboard/VBoxSharedClipboardSvc-darwin.cpp
r80444 r80447 226 226 * 227 227 * @param pClient Context information about the guest VM. 228 * @param pCmdCtx Command context to use for reading the data. Currently unused. 228 229 * @param pData Data block to put read data into. 229 230 * @param pcbActual Where to write the actual size of the written data. 230 231 */ 231 int VBoxClipboardSvcImplReadData(PVBOXCLIPBOARDCLIENT pClient, 232 int VBoxClipboardSvcImplReadData(PVBOXCLIPBOARDCLIENT pClient, PVBOXCLIPBOARDCLIENTCMDCTX pCmdCtx, 232 233 PSHAREDCLIPBOARDDATABLOCK pData, uint32_t *pcbActual) 233 234 { 235 RT_NOREF(pCmdCtx); 236 234 237 VBoxSvcClipboardLock(); 235 238 … … 248 251 * Called by the HGCM clipboard subsystem when we have requested data and that data arrives. 249 252 * 250 * @param pClient Context information about the guest VM 251 * @param pData Data block to write to clipboard. 252 */ 253 int VBoxClipboardSvcImplWriteData(PVBOXCLIPBOARDCLIENT pClient, PSHAREDCLIPBOARDDATABLOCK pData) 254 { 253 * 254 * @param pClient Context information about the guest VM. 255 * @param pCmdCtx Command context to use for writing the data. Currently unused. 256 * @param pData Data block to write to clipboard. 257 */ 258 int VBoxClipboardSvcImplWriteData(PVBOXCLIPBOARDCLIENT pClient, PVBOXCLIPBOARDCLIENTCMDCTX pCmdCtx, PSHAREDCLIPBOARDDATABLOCK pData) 259 { 260 RT_NOREF(pCmdCtx); 261 255 262 VBoxSvcClipboardLock(); 256 263
Note:
See TracChangeset
for help on using the changeset viewer.