Changeset 28567 in vbox for trunk/include/VBox
- Timestamp:
- Apr 21, 2010 3:39:59 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/VMMDev.h
r28434 r28567 610 610 } VMMDevReportGuestInfo; 611 611 AssertCompileSize(VMMDevReportGuestInfo, 24+8); 612 613 614 /** 615 * Guest information structure, version 2. 616 * 617 * Used by VMMDevReportGuestInfo2 and PDMIVMMDEVCONNECTOR::pfnUpdateGuestVersion2. 618 */ 619 typedef struct VBoxGuestInfo2 620 { 621 /** Major version. */ 622 uint16_t additionsMajor; 623 /** Minor version. */ 624 uint16_t additionsMinor; 625 /** Build number. */ 626 uint32_t additionsBuild; 627 /** SVN revision. */ 628 uint32_t additionsRevision; 629 /** Feature mask, currently unused. */ 630 uint32_t additionsFeatures; 631 } VBoxGuestInfo2; 632 633 634 /** 635 * Guest information report, version 2. 636 * 637 * Used by VMMDevReq_ReportGuestInfo2. 638 */ 639 typedef struct 640 { 641 /** Header. */ 642 VMMDevRequestHeader header; 643 /** Guest information. */ 644 VBoxGuestInfo2 guestInfo; 645 } VMMDevReportGuestInfo2; 646 AssertCompileSize(VMMDevReportGuestInfo2, 24+16); 612 647 613 648
Note:
See TracChangeset
for help on using the changeset viewer.