VirtualBox

Changeset 21457 in vbox for trunk/include


Ignore:
Timestamp:
Jul 9, 2009 8:40:08 PM (15 years ago)
Author:
vboxsync
Message:

VMMDev: Adjusted and implemented GetHostVersion.

File:
1 edited

Legend:

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

    r21456 r21457  
    339339 *
    340340 * Used by VMMDevReq_GetHostVersion.
     341 *
     342 * @remarks VBGL uses this to detect the precense of new features in the
     343 *          interface.
    341344 */
    342345typedef struct
     
    345348    VMMDevRequestHeader header;
    346349    /** Major version. */
    347     uint32_t major;
     350    uint16_t major;
    348351    /** Minor version. */
    349     uint32_t minor;
     352    uint16_t minor;
    350353    /** Build number. */
    351354    uint32_t build;
     355    /** SVN revision. */
     356    uint32_t revision;
     357    /** Feature mask. */
     358    uint32_t features;
    352359} VMMDevReqHostVersion;
    353 AssertCompileSize(VMMDevReqHostVersion, 24+12);
     360AssertCompileSize(VMMDevReqHostVersion, 24+16);
     361
     362/** @name VMMDevReqHostVersion::features
     363 * @{ */
     364/** Physical buffers and page lists are supported by HGCM. */
     365#define VMMDEV_HVF_PHYS_HGCM_PARAM      RT_BIT(0)
     366/** @} */
    354367
    355368
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