VirtualBox

Changeset 28567 in vbox for trunk/include/VBox


Ignore:
Timestamp:
Apr 21, 2010 3:39:59 PM (15 years ago)
Author:
vboxsync
Message:

include/VMMDev: VBoxGuestInfo2

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/VBox/VMMDev.h

    r28434 r28567  
    610610} VMMDevReportGuestInfo;
    611611AssertCompileSize(VMMDevReportGuestInfo, 24+8);
     612
     613
     614/**
     615 * Guest information structure, version 2.
     616 *
     617 * Used by VMMDevReportGuestInfo2 and PDMIVMMDEVCONNECTOR::pfnUpdateGuestVersion2.
     618 */
     619typedef 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 */
     639typedef struct
     640{
     641    /** Header. */
     642    VMMDevRequestHeader header;
     643    /** Guest information. */
     644    VBoxGuestInfo2 guestInfo;
     645} VMMDevReportGuestInfo2;
     646AssertCompileSize(VMMDevReportGuestInfo2, 24+16);
    612647
    613648
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