Changeset 58336 in vbox for trunk/src/VBox/Additions/WINNT
- Timestamp:
- Oct 20, 2015 12:46:38 PM (9 years ago)
- Location:
- trunk/src/VBox/Additions/WINNT/VBoxTray
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxDnD.h
r57741 r58336 114 114 LONG mRefCount; 115 115 VBoxDnDWnd *mpWndParent; 116 VBGLR3GUESTDNDCMDCTX mDnDCtx;117 116 DWORD mdwCurEffect; 118 117 uint32_t muCurAction; … … 155 154 LONG mRefCount; 156 155 VBoxDnDWnd *mpWndParent; 157 VBGLR3GUESTDNDCMDCTX mDnDCtx;158 156 DWORD mdwCurEffect; 159 157 /** Copy of the data object's FORMATETC struct. -
trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxDnDDropSource.cpp
r55422 r58336 38 38 muCurAction(DND_IGNORE_ACTION) 39 39 { 40 int rc = VbglR3DnDConnect(&mDnDCtx); 41 42 LogFlowFunc(("rc=%Rrc\n", rc)); 40 LogFlowFuncEnter(); 43 41 } 44 42 45 43 VBoxDnDDropSource::~VBoxDnDDropSource(void) 46 44 { 47 int rc = VbglR3DnDDisconnect(&mDnDCtx); 48 49 LogFlowFunc(("rc=%Rrc, mRefCount=%RI32\n", rc, mRefCount)); 45 LogFlowFunc(("mRefCount=%RI32\n", mRefCount)); 50 46 } 51 47 -
trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxDnDDropTarget.cpp
r57297 r58336 42 42 hEventDrop(NIL_RTSEMEVENT) 43 43 { 44 int rc = VbglR3DnDConnect(&mDnDCtx); 45 if (RT_SUCCESS(rc)) 46 rc = RTSemEventCreate(&hEventDrop); 47 48 LogFlowFunc(("clientID=%RU32, rc=%Rrc\n", mDnDCtx.uClientID, rc)); 44 int rc = RTSemEventCreate(&hEventDrop); 45 LogFlowFunc(("rc=%Rrc\n", rc)); 49 46 } 50 47 … … 53 50 reset(); 54 51 55 int rc2 = VbglR3DnDDisconnect(&mDnDCtx); 56 AssertRC(rc2); 57 rc2 = RTSemEventDestroy(hEventDrop); 52 int rc2 = RTSemEventDestroy(hEventDrop); 58 53 AssertRC(rc2); 59 54
Note:
See TracChangeset
for help on using the changeset viewer.