Changeset 22189 in vbox for trunk/include
- Timestamp:
- Aug 11, 2009 7:28:42 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 50975
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/VBoxVideo.h
r22028 r22189 254 254 # ifdef VBOX_WITH_VIDEOHWACCEL 255 255 #pragma pack(1) 256 257 #define VBOXVHWA_VERSION_MAJ 0 258 #define VBOXVHWA_VERSION_MIN 0 259 #define VBOXVHWA_VERSION_BLD 1 260 #define VBOXVHWA_VERSION_RSV 0 256 261 257 262 typedef enum … … 511 516 #define VBOXVHWA_OFFSET64_VOID (~0L) 512 517 518 typedef struct _VBOXVHWA_VERSION 519 { 520 uint32_t maj; 521 uint32_t min; 522 uint32_t bld; 523 uint32_t reserved; 524 } VBOXVHWA_VERSION; 525 513 526 typedef struct _VBOXVHWACMD_QUERYINFO1 514 527 { 515 uint32_t cfgFlags; 516 uint32_t caps; 517 uint32_t caps2; 518 uint32_t colorKeyCaps; 519 uint32_t stretchCaps; 520 uint32_t surfaceCaps; 521 uint32_t numOverlays; 522 uint32_t numFourCC; 523 528 union 529 { 530 struct 531 { 532 VBOXVHWA_VERSION guestVersion; 533 } in; 534 535 struct 536 { 537 uint32_t cfgFlags; 538 uint32_t caps; 539 540 uint32_t caps2; 541 uint32_t colorKeyCaps; 542 543 uint32_t stretchCaps; 544 uint32_t surfaceCaps; 545 546 uint32_t numOverlays; 547 uint32_t curOverlays; 548 549 uint32_t numFourCC; 550 uint32_t reserved; 551 } out; 552 } u; 524 553 } VBOXVHWACMD_QUERYINFO1; 525 554
Note:
See TracChangeset
for help on using the changeset viewer.