Changeset 88032 in vbox
- Timestamp:
- Mar 9, 2021 12:17:19 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/pdmaudioifs.h
r88031 r88032 373 373 /** Maximum number of output audio channels the device supports. */ 374 374 uint8_t cMaxOutputChannels; 375 uint8_t bAlignment [1];375 uint8_t bAlignment; 376 376 /** Device type union, based on enmType. */ 377 377 union … … 390 390 char szName[64]; 391 391 } PDMAUDIODEVICE; 392 AssertCompileSizeAlignment(PDMAUDIODEVICE, 32);392 AssertCompileSizeAlignment(PDMAUDIODEVICE, ARCH_BITS >= 64 ? 32 : 16); 393 393 /** Pointer to audio device info (enum result). */ 394 394 typedef PDMAUDIODEVICE *PPDMAUDIODEVICE;
Note:
See TracChangeset
for help on using the changeset viewer.