Changeset 100015 in vbox for trunk/src/VBox/Additions
- Timestamp:
- May 30, 2023 3:42:49 PM (20 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxGuest/lib/VBoxGuestR3LibClipboard.cpp
r99955 r100015 640 640 Msg.ReqParms.fRoots.SetUInt32(0); 641 641 642 Msg.cRoots.SetUInt 32(0);642 Msg.cRoots.SetUInt64(0); 643 643 644 644 int rc = VbglR3HGCMCall(&Msg.hdr, sizeof(Msg)); … … 648 648 if (RT_SUCCESS(rc)) 649 649 { 650 rc = Msg.cRoots.GetUInt 32(&pRootListHdr->cRoots);650 rc = Msg.cRoots.GetUInt64(&pRootListHdr->cRoots); 651 651 AssertRC(rc); 652 652 } … … 903 903 Msg.ReqParms.fRoots.SetUInt32(pRootListHdr->fRoots); 904 904 905 Msg.cRoots.SetUInt 32(pRootListHdr->cRoots);905 Msg.cRoots.SetUInt64(pRootListHdr->cRoots); 906 906 907 907 int rc = VbglR3HGCMCall(&Msg.hdr, sizeof(Msg));
Note:
See TracChangeset
for help on using the changeset viewer.