Changeset 100510 in vbox
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/GuestHost/SharedClipboard-win.h
r100461 r100510 333 333 /** The object's current status. */ 334 334 Status m_enmStatus; 335 /** Last (IPRT-style) error set in conjunction with the status. */ 336 int m_rcStatus; 335 337 /** Data object callback table to use. */ 336 338 CALLBACKS m_Callbacks; -
trunk/src/VBox/GuestHost/SharedClipboard/ClipboardDataObjectImpl-win.cpp
r100504 r100510 57 57 : m_pCtx(NULL) 58 58 , m_enmStatus(Uninitialized) 59 , m_rcStatus(VERR_IPE_UNINITIALIZED_STATUS) 59 60 , m_lRefCount(0) 60 61 , m_cFormats(0) … … 585 586 586 587 case Completed: 587 LogRel2(("Shared Clipboard: Transfer complete\n"));588 LogRel2(("Shared Clipboard: Data object: Transfer complete\n")); 588 589 break; 589 590 590 591 case Canceled: 591 LogRel2(("Shared Clipboard: Transfer canceled\n"));592 LogRel2(("Shared Clipboard: Data object: Transfer canceled\n")); 592 593 break; 593 594 594 595 case Error: 595 LogRel(("Shared Clipboard: Transfer error within data object thread occurred\n"));596 LogRel(("Shared Clipboard: Data object: Transfer error %Rrc occurred\n", pThis->m_rcStatus)); 596 597 break; 597 598 … … 1273 1274 * @param enmStatus New status to signal. 1274 1275 * @param rc Result code. Optional. 1276 * Errors only accepted when status also is 'Error'. 1275 1277 * 1276 1278 * @note Caller must have taken the critical section. … … 1281 1283 AssertReturn(RTCritSectIsOwned(&m_CritSect), VERR_WRONG_ORDER); 1282 1284 1283 RT_NOREF(rc); 1284 1285 LogFlowFunc(("enmStatus=%#x (current is: %#x)\n", enmStatus, m_enmStatus)); 1285 LogFlowFunc(("enmStatus=%#x, rc=%Rrc (current is: %#x)\n", enmStatus, rc, m_enmStatus)); 1286 1286 1287 1287 int rc2 = VINF_SUCCESS; 1288 1289 m_rcStatus = rc; 1288 1290 1289 1291 switch (enmStatus)
Note:
See TracChangeset
for help on using the changeset viewer.