Changeset 81843 in vbox for trunk/src/VBox/Additions/common
- Timestamp:
- Nov 14, 2019 4:30:44 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxGuest/lib/VBoxGuestR3LibClipboard.cpp
r81831 r81843 200 200 rc = Msg.u.v1.uContext.GetUInt64(&pCtx->uContextID); 201 201 if (RT_SUCCESS(rc)) 202 rc = Msg.u.v1.uFormats.GetUInt32(&pFormats-> uFormats);202 rc = Msg.u.v1.uFormats.GetUInt32(&pFormats->Formats); 203 203 if (RT_SUCCESS(rc)) 204 204 rc = Msg.u.v1.fFlags.GetUInt32(&pFormats->fFlags); … … 2363 2363 int rc; 2364 2364 2365 LogFlowFunc(("uFormats=0x%x\n", pFormats-> uFormats));2365 LogFlowFunc(("uFormats=0x%x\n", pFormats->Formats)); 2366 2366 2367 2367 if (pCtx->fUseLegacyProtocol) 2368 2368 { 2369 2369 VBGL_HGCM_HDR_INIT(&Msg.hdr, pCtx->uClientID, VBOX_SHCL_GUEST_FN_FORMATS_REPORT, 1); 2370 Msg.u.v0.uFormats.SetUInt32(pFormats-> uFormats);2370 Msg.u.v0.uFormats.SetUInt32(pFormats->Formats); 2371 2371 2372 2372 rc = VbglR3HGCMCall(&Msg.hdr, sizeof(Msg.hdr) + sizeof(Msg.u.v0)); … … 2377 2377 2378 2378 Msg.u.v1.uContext.SetUInt64(pCtx->uContextID); 2379 Msg.u.v1.uFormats.SetUInt32(pFormats-> uFormats);2379 Msg.u.v1.uFormats.SetUInt32(pFormats->Formats); 2380 2380 Msg.u.v1.fFlags.SetUInt32(pFormats->fFlags); 2381 2381
Note:
See TracChangeset
for help on using the changeset viewer.