Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/GuestHost/SharedClipboard-transfers.h
r99954 r99955 742 742 * @param pCtx Provider context to use. 743 743 * @param hList List handle of list to read from. 744 * @param p EntryWhere to store the read information.745 */ 746 DECLCALLBACKMEMBER(int, pfnListEntryRead,(PSHCLTXPROVIDERCTX pCtx, SHCLLISTHANDLE hList, PSHCLLISTENTRY p Entry));744 * @param pListEntry Where to store the read information. 745 */ 746 DECLCALLBACKMEMBER(int, pfnListEntryRead,(PSHCLTXPROVIDERCTX pCtx, SHCLLISTHANDLE hList, PSHCLLISTENTRY pListEntry)); 747 747 /** 748 748 * Writes a single transfer list entry. … … 751 751 * @param pCtx Provider context to use. 752 752 * @param hList List handle of list to write to. 753 * @param p EntryEntry information to write.754 */ 755 DECLCALLBACKMEMBER(int, pfnListEntryWrite,(PSHCLTXPROVIDERCTX pCtx, SHCLLISTHANDLE hList, PSHCLLISTENTRY p Entry));753 * @param pListEntry Entry information to write. 754 */ 755 DECLCALLBACKMEMBER(int, pfnListEntryWrite,(PSHCLTXPROVIDERCTX pCtx, SHCLLISTHANDLE hList, PSHCLLISTENTRY pListEntry)); 756 756 /** 757 757 * Opens a transfer object. … … 759 759 * @returns VBox status code. 760 760 * @param pCtx Provider context to use. 761 * @param p OpenCreateParmsOpen / create parameters of transfer object to open / create.761 * @param pCreateParms Open / create parameters of transfer object to open / create. 762 762 * @param phObj Where to store the handle of transfer object opened on success. 763 763 */ … … 777 777 * @param pCtx Provider context to use. 778 778 * @param hObj Handle of transfer object to read from. 779 * @param pv BufBuffer for where to store the read data.780 * @param cb BufSize (in bytes) of buffer.779 * @param pvData Buffer for where to store the read data. 780 * @param cbData Size (in bytes) of buffer. 781 781 * @param fFlags Read flags. Optional. 782 782 * @param pcbRead Where to return how much bytes were read on success. Optional. … … 790 790 * @param pCtx Provider context to use. 791 791 * @param hObj Handle of transfer object to write to. 792 * @param pv BufBuffer of data to write.793 * @param cb BufSize (in bytes) of buffer to write.792 * @param pvData Buffer of data to write. 793 * @param cbData Size (in bytes) of buffer to write. 794 794 * @param fFlags Write flags. Optional. 795 795 * @param pcbWritten How much bytes were writtenon success. Optional. -
trunk/src/VBox/Additions/common/VBoxGuest/lib/VBoxGuestR3LibClipboard.cpp
r99954 r99955 1771 1771 /** @copydoc SHCLTXPROVIDERIFACE::pfnListEntryRead */ 1772 1772 static DECLCALLBACK(int) vbglR3ClipboardTransferIfaceListEntryRead(PSHCLTXPROVIDERCTX pCtx, 1773 SHCLLISTHANDLE hList, PSHCLLISTENTRY p Entry)1773 SHCLLISTHANDLE hList, PSHCLLISTENTRY pListEntry) 1774 1774 { 1775 1775 LogFlowFuncEnter(); … … 1778 1778 AssertPtr(pCmdCtx); 1779 1779 1780 int rc = VbglR3ClipboardListEntryRead(pCmdCtx, hList, p Entry);1780 int rc = VbglR3ClipboardListEntryRead(pCmdCtx, hList, pListEntry); 1781 1781 1782 1782 LogFlowFuncLeaveRC(rc); -
trunk/src/VBox/GuestHost/SharedClipboard/clipboard-transfers.cpp
r99951 r99955 1340 1340 } 1341 1341 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 */ 1342 1350 int ShClTransferListWrite(PSHCLTRANSFER pTransfer, SHCLLISTHANDLE hList, 1343 1351 PSHCLLISTENTRY pEntry)
Note:
See TracChangeset
for help on using the changeset viewer.

