- Timestamp:
- Aug 29, 2018 8:56:02 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/GuestDnDTargetImpl.cpp
r73940 r73941 432 432 433 433 HRESULT hr = S_OK; 434 int rc = GuestDnDInst()->hostCall(HOST_DND_HG_EVT_LEAVE, 435 0 /* cParms */, NULL /* paParms */); 434 435 GuestDnDMsg Msg; 436 Msg.setType(HOST_DND_HG_EVT_LEAVE); 437 if (mDataBase.m_uProtocolVersion >= 3) 438 Msg.setNextUInt32(0); /** @todo ContextID not used yet. */ 439 440 int rc = GuestDnDInst()->hostCall(Msg.getType(), Msg.getCount(), Msg.getParms()); 436 441 if (RT_SUCCESS(rc)) 437 442 { … … 693 698 694 699 LogFlowFunc(("Cancelling operation, telling guest ...\n")); 695 return GuestDnDInst()->hostCall(HOST_DND_HG_EVT_CANCEL, 0 /* cParms */, NULL /*paParms*/); 700 701 GuestDnDMsg Msg; 702 Msg.setType(HOST_DND_HG_EVT_CANCEL); 703 if (mDataBase.m_uProtocolVersion >= 3) 704 Msg.setNextUInt32(0); /** @todo ContextID not used yet. */ 705 706 return GuestDnDInst()->hostCall(Msg.getType(), Msg.getCount(), Msg.getParms()); 696 707 } 697 708
Note:
See TracChangeset
for help on using the changeset viewer.