Changeset 41540 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Jun 1, 2012 12:51:16 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManageList.cpp
r40540 r41540 712 712 USHORT bcdRevision; 713 713 CHECK_ERROR_RET(dev, COMGETTER(Revision)(&bcdRevision), 1); 714 USHORT usPort; 715 CHECK_ERROR_RET(dev, COMGETTER(Port)(&usPort), 1); 716 USHORT usVersion; 717 CHECK_ERROR_RET(dev, COMGETTER(Version)(&usVersion), 1); 718 USHORT usPortVersion; 719 CHECK_ERROR_RET(dev, COMGETTER(PortVersion)(&usPortVersion), 1); 714 720 715 721 RTPrintf("UUID: %s\n" 716 722 "VendorId: %#06x (%04X)\n" 717 723 "ProductId: %#06x (%04X)\n" 718 "Revision: %u.%u (%02u%02u)\n", 724 "Revision: %u.%u (%02u%02u)\n" 725 "Port: %u\n" 726 "USB version/speed: %u/%u\n", 719 727 Utf8Str(id).c_str(), 720 728 usVendorId, usVendorId, usProductId, usProductId, 721 729 bcdRevision >> 8, bcdRevision & 0xff, 722 bcdRevision >> 8, bcdRevision & 0xff); 730 bcdRevision >> 8, bcdRevision & 0xff, 731 usPort, usVersion, usPortVersion); 723 732 724 733 /* optional stuff. */
Note:
See TracChangeset
for help on using the changeset viewer.