Changeset 88033 in vbox for trunk/include/VBox/vmm
- Timestamp:
- Mar 9, 2021 1:31:33 AM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 143162
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/pdmaudioifs.h
r88032 r88033 356 356 /** List entry (like PDMAUDIODEVICEENUM::LstDevices). */ 357 357 RTLISTNODE Node; 358 /** Additional data which might be relevant for the current context (follows 359 * immediately after the end of this structure). */ 360 void *pvData; 358 /** Magic value (PDMAUDIODEVICE_MAGIC). */ 359 uint32_t uMagic; 361 360 /** Size of the additional data. */ 362 size_tcbData;361 uint32_t cbData; 363 362 /** The device type. */ 364 363 PDMAUDIODEVICETYPE enmType; … … 385 384 uint16_t idProduct; 386 385 } USB; 387 uint64_t uPadding[ 2];386 uint64_t uPadding[ARCH_BITS >= 64 ? 3 : 4]; 388 387 } Type; 389 388 /** Friendly name of the device, if any. */ 390 389 char szName[64]; 391 390 } PDMAUDIODEVICE; 392 AssertCompileSizeAlignment(PDMAUDIODEVICE, ARCH_BITS >= 64 ? 32 : 16);391 AssertCompileSizeAlignment(PDMAUDIODEVICE, 32); 393 392 /** Pointer to audio device info (enum result). */ 394 393 typedef PDMAUDIODEVICE *PPDMAUDIODEVICE; 395 394 /** Pointer to a const audio device info (enum result). */ 396 395 typedef PDMAUDIODEVICE const *PCPDMAUDIODEVICE; 396 397 /** Magic value for PDMAUDIODEVICE. (Armando Anthony "Chick" Corea) */ 398 #define PDMAUDIODEVICE_MAGIC UINT32_C(0x19410612) 399 /** Magic value for PDMAUDIODEVICE after free. */ 400 #define PDMAUDIODEVICE_MAGIC_DEAD UINT32_C(0x20210209) 401 397 402 398 403 /**
Note:
See TracChangeset
for help on using the changeset viewer.