VirtualBox

Changeset 81843 in vbox for trunk/src/VBox/Additions/common


Ignore:
Timestamp:
Nov 14, 2019 4:30:44 PM (5 years ago)
Author:
vboxsync
Message:

Shared Clipboard/Transfers: Update.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Additions/common/VBoxGuest/lib/VBoxGuestR3LibClipboard.cpp

    r81831 r81843  
    200200        rc = Msg.u.v1.uContext.GetUInt64(&pCtx->uContextID);
    201201        if (RT_SUCCESS(rc))
    202             rc = Msg.u.v1.uFormats.GetUInt32(&pFormats->uFormats);
     202            rc = Msg.u.v1.uFormats.GetUInt32(&pFormats->Formats);
    203203        if (RT_SUCCESS(rc))
    204204            rc = Msg.u.v1.fFlags.GetUInt32(&pFormats->fFlags);
     
    23632363    int rc;
    23642364
    2365     LogFlowFunc(("uFormats=0x%x\n", pFormats->uFormats));
     2365    LogFlowFunc(("uFormats=0x%x\n", pFormats->Formats));
    23662366
    23672367    if (pCtx->fUseLegacyProtocol)
    23682368    {
    23692369        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);
    23712371
    23722372        rc = VbglR3HGCMCall(&Msg.hdr, sizeof(Msg.hdr) + sizeof(Msg.u.v0));
     
    23772377
    23782378        Msg.u.v1.uContext.SetUInt64(pCtx->uContextID);
    2379         Msg.u.v1.uFormats.SetUInt32(pFormats->uFormats);
     2379        Msg.u.v1.uFormats.SetUInt32(pFormats->Formats);
    23802380        Msg.u.v1.fFlags.SetUInt32(pFormats->fFlags);
    23812381
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette