Changeset 85746 in vbox for trunk/src/VBox/Additions/common
- Timestamp:
- Aug 13, 2020 8:47:12 AM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 139894
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxGuest/lib/VBoxGuestR3LibDragAndDrop.cpp
r85745 r85746 863 863 { 864 864 rc = DnDTransferListAppendRootsFromBuffer(&pMeta->u.URI.Transfer, DNDTRANSFERLISTFMT_URI, (const char *)pvData, cbData, 865 DND_PATH_SEPARATOR , 0 /* fFlags */);865 DND_PATH_SEPARATOR_STR, 0 /* fFlags */); 866 866 if (RT_SUCCESS(rc)) 867 867 { … … 1800 1800 * @param pszFormat In which format the data will be sent. 1801 1801 * @param pvData Data block to send. 1802 * For URI data this must contain the absolute local URI paths, separated by DND_PATH_SEPARATOR .1802 * For URI data this must contain the absolute local URI paths, separated by DND_PATH_SEPARATOR_STR. 1803 1803 * @param cbData Size (in bytes) of data block to send. 1804 1804 */ … … 1828 1828 1829 1829 rc = DnDTransferListAppendPathsFromBuffer(&lstTransfer, DNDTRANSFERLISTFMT_URI, (const char *)pvData, cbData, 1830 DND_PATH_SEPARATOR , fFlags);1830 DND_PATH_SEPARATOR_STR, fFlags); 1831 1831 if (RT_SUCCESS(rc)) 1832 1832 rc = vbglR3DnDGHSendTransferData(pCtx, &lstTransfer);
Note:
See TracChangeset
for help on using the changeset viewer.