Changeset 21457 in vbox for trunk/include
- Timestamp:
- Jul 9, 2009 8:40:08 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/VMMDev.h
r21456 r21457 339 339 * 340 340 * Used by VMMDevReq_GetHostVersion. 341 * 342 * @remarks VBGL uses this to detect the precense of new features in the 343 * interface. 341 344 */ 342 345 typedef struct … … 345 348 VMMDevRequestHeader header; 346 349 /** Major version. */ 347 uint 32_t major;350 uint16_t major; 348 351 /** Minor version. */ 349 uint 32_t minor;352 uint16_t minor; 350 353 /** Build number. */ 351 354 uint32_t build; 355 /** SVN revision. */ 356 uint32_t revision; 357 /** Feature mask. */ 358 uint32_t features; 352 359 } VMMDevReqHostVersion; 353 AssertCompileSize(VMMDevReqHostVersion, 24+12); 360 AssertCompileSize(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 /** @} */ 354 367 355 368
Note:
See TracChangeset
for help on using the changeset viewer.