VirtualBox

Changeset 80447 in vbox for trunk/src/VBox


Ignore:
Timestamp:
Aug 27, 2019 6:09:09 PM (5 years ago)
Author:
vboxsync
Message:

Shared Clipboard/URI: MacOS build fix.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/HostServices/SharedClipboard/VBoxSharedClipboardSvc-darwin.cpp

    r80444 r80447  
    226226 *
    227227 * @param pClient               Context information about the guest VM.
     228 * @param pCmdCtx               Command context to use for reading the data. Currently unused.
    228229 * @param pData                 Data block to put read data into.
    229230 * @param pcbActual             Where to write the actual size of the written data.
    230231 */
    231 int VBoxClipboardSvcImplReadData(PVBOXCLIPBOARDCLIENT pClient,
     232int VBoxClipboardSvcImplReadData(PVBOXCLIPBOARDCLIENT pClient, PVBOXCLIPBOARDCLIENTCMDCTX pCmdCtx,
    232233                                 PSHAREDCLIPBOARDDATABLOCK pData, uint32_t *pcbActual)
    233234{
     235    RT_NOREF(pCmdCtx);
     236
    234237    VBoxSvcClipboardLock();
    235238
     
    248251 * Called by the HGCM clipboard subsystem when we have requested data and that data arrives.
    249252 *
    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 */
     258int VBoxClipboardSvcImplWriteData(PVBOXCLIPBOARDCLIENT pClient, PVBOXCLIPBOARDCLIENTCMDCTX pCmdCtx, PSHAREDCLIPBOARDDATABLOCK pData)
     259{
     260    RT_NOREF(pCmdCtx);
     261
    255262    VBoxSvcClipboardLock();
    256263
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette