Changeset 95821 in vbox
- Timestamp:
- Jul 25, 2022 4:00:26 PM (2 years ago)
- Location:
- trunk
- Files:
-
- 1 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/GuestHost/DragAndDrop.h
r93115 r95821 34 34 #include <iprt/fs.h> 35 35 #include <iprt/list.h> 36 37 #include <VBox/GuestHost/DragAndDropDefs.h> 36 38 37 39 /** DnDURIDroppedFiles flags. */ … … 89 91 int DnDDroppedFilesReset(PDNDDROPPEDFILES pDF, bool fDelete); 90 92 int DnDDroppedFilesRollback(PDNDDROPPEDFILES pDF); 93 94 const char *DnDActionToStr(VBOXDNDACTION uAction); 91 95 92 96 bool DnDMIMEHasFileURLs(const char *pcszFormat, size_t cchFormatMax); -
trunk/src/VBox/GuestHost/DragAndDrop/Makefile.kmk
r93115 r95821 28 28 DnDPath.cpp \ 29 29 DnDTransferObject.cpp \ 30 DnDTransferList.cpp 30 DnDTransferList.cpp \ 31 DnDUtils.cpp 31 32 32 33 # … … 61 62 62 63 include $(FILE_KBUILD_SUB_FOOTER) 63 -
trunk/src/VBox/Main/Makefile.kmk
r95741 r95821 1162 1162 src-client/GuestDnDPrivate.cpp \ 1163 1163 src-client/GuestDnDSourceImpl.cpp \ 1164 src-client/GuestDnDTargetImpl.cpp 1164 src-client/GuestDnDTargetImpl.cpp \ 1165 $(PATH_ROOT)/src/VBox/GuestHost/DragAndDrop/DnDUtils.cpp 1165 1166 endif 1166 1167 ifdef VBOX_WITH_XPCOM -
trunk/src/VBox/Main/src-client/GuestDnDPrivate.cpp
r93115 r95821 571 571 AssertReturn(sizeof(DragAndDropSvc::VBOXDNDCBHGACKOPDATA) == cbParms, VERR_INVALID_PARAMETER); 572 572 AssertReturn(DragAndDropSvc::CB_MAGIC_DND_HG_ACK_OP == pCBData->hdr.uMagic, VERR_INVALID_PARAMETER); 573 574 LogRel2(("DnD: Guest responded with action '%s' for host->guest drag event\n", DnDActionToStr(pCBData->uAction))); 573 575 574 576 setActionDefault(pCBData->uAction); … … 628 630 AssertReturn(DragAndDropSvc::CB_MAGIC_DND_GH_ACK_PENDING == pCBData->hdr.uMagic, VERR_INVALID_PARAMETER); 629 631 632 LogRel2(("DnD: Host responded with default action '%s' (%RU32 bytes format data) to guest->host drag event\n", 633 DnDActionToStr(pCBData->uDefAction), pCBData->cbFormat)); 634 630 635 if ( pCBData->cbFormat == 0 631 636 || pCBData->cbFormat > _64K /** @todo Make the maximum size configurable? */
Note:
See TracChangeset
for help on using the changeset viewer.