VirtualBox

Changeset 99955 in vbox for trunk


Ignore:
Timestamp:
May 24, 2023 11:11:36 AM (16 months ago)
Author:
vboxsync
Message:

Shared Clipboard: Docs [build fix]. bugref:9437

Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/VBox/GuestHost/SharedClipboard-transfers.h

    r99954 r99955  
    742742     * @param   pCtx                Provider context to use.
    743743     * @param   hList               List handle of list to read from.
    744      * @param   pEntry              Where to store the read information.
    745      */
    746     DECLCALLBACKMEMBER(int, pfnListEntryRead,(PSHCLTXPROVIDERCTX pCtx, SHCLLISTHANDLE hList, PSHCLLISTENTRY pEntry));
     744     * @param   pListEntry          Where to store the read information.
     745     */
     746    DECLCALLBACKMEMBER(int, pfnListEntryRead,(PSHCLTXPROVIDERCTX pCtx, SHCLLISTHANDLE hList, PSHCLLISTENTRY pListEntry));
    747747    /**
    748748     * Writes a single transfer list entry.
     
    751751     * @param   pCtx                Provider context to use.
    752752     * @param   hList               List handle of list to write to.
    753      * @param   pEntry              Entry information to write.
    754      */
    755     DECLCALLBACKMEMBER(int, pfnListEntryWrite,(PSHCLTXPROVIDERCTX pCtx, SHCLLISTHANDLE hList, PSHCLLISTENTRY pEntry));
     753     * @param   pListEntry          Entry information to write.
     754     */
     755    DECLCALLBACKMEMBER(int, pfnListEntryWrite,(PSHCLTXPROVIDERCTX pCtx, SHCLLISTHANDLE hList, PSHCLLISTENTRY pListEntry));
    756756    /**
    757757     * Opens a transfer object.
     
    759759     * @returns VBox status code.
    760760     * @param   pCtx                Provider context to use.
    761      * @param   pOpenCreateParms    Open / create parameters of transfer object to open / create.
     761     * @param   pCreateParms        Open / create parameters of transfer object to open / create.
    762762     * @param   phObj               Where to store the handle of transfer object opened on success.
    763763     */
     
    777777     * @param   pCtx                Provider context to use.
    778778     * @param   hObj                Handle of transfer object to read from.
    779      * @param   pvBuf               Buffer for where to store the read data.
    780      * @param   cbBuf               Size (in bytes) of buffer.
     779     * @param   pvData              Buffer for where to store the read data.
     780     * @param   cbData              Size (in bytes) of buffer.
    781781     * @param   fFlags              Read flags. Optional.
    782782     * @param   pcbRead             Where to return how much bytes were read on success. Optional.
     
    790790     * @param   pCtx                Provider context to use.
    791791     * @param   hObj                Handle of transfer object to write to.
    792      * @param   pvBuf               Buffer of data to write.
    793      * @param   cbBuf               Size (in bytes) of buffer to write.
     792     * @param   pvData              Buffer of data to write.
     793     * @param   cbData              Size (in bytes) of buffer to write.
    794794     * @param   fFlags              Write flags. Optional.
    795795     * @param   pcbWritten          How much bytes were writtenon success. Optional.
  • trunk/src/VBox/Additions/common/VBoxGuest/lib/VBoxGuestR3LibClipboard.cpp

    r99954 r99955  
    17711771/** @copydoc SHCLTXPROVIDERIFACE::pfnListEntryRead */
    17721772static DECLCALLBACK(int) vbglR3ClipboardTransferIfaceListEntryRead(PSHCLTXPROVIDERCTX pCtx,
    1773                                                                    SHCLLISTHANDLE hList, PSHCLLISTENTRY pEntry)
     1773                                                                   SHCLLISTHANDLE hList, PSHCLLISTENTRY pListEntry)
    17741774{
    17751775    LogFlowFuncEnter();
     
    17781778    AssertPtr(pCmdCtx);
    17791779
    1780     int rc = VbglR3ClipboardListEntryRead(pCmdCtx, hList, pEntry);
     1780    int rc = VbglR3ClipboardListEntryRead(pCmdCtx, hList, pListEntry);
    17811781
    17821782    LogFlowFuncLeaveRC(rc);
  • trunk/src/VBox/GuestHost/SharedClipboard/clipboard-transfers.cpp

    r99951 r99955  
    13401340}
    13411341
     1342/**
     1343 * Writes a single transfer list entry.
     1344 *
     1345 * @returns VBox status code.
     1346 * @param   pTransfer           Clipboard transfer to handle.
     1347 * @param   hList               List handle of list to write to.
     1348 * @param   pEntry              Entry information to write.
     1349 */
    13421350int ShClTransferListWrite(PSHCLTRANSFER pTransfer, SHCLLISTHANDLE hList,
    13431351                          PSHCLLISTENTRY pEntry)
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