Changeset 59184 in vbox for trunk/src/VBox/Devices/Audio
- Timestamp:
- Dec 18, 2015 1:38:29 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/DevIchHda.cpp
r59182 r59184 651 651 typedef struct HDADRIVER 652 652 { 653 union 654 { 655 /** Node for storing this driver in our device driver 656 * list of HDASTATE. */ 657 RTLISTNODE Node; 658 struct 659 { 660 R3PTRTYPE(void *) dummy1; 661 R3PTRTYPE(void *) dummy2; 662 } dummy; 663 }; 653 /** Node for storing this driver in our device driver list of HDASTATE. */ 654 RTLISTNODER3 Node; 664 655 665 656 /** Pointer to HDA controller (state). */ … … 754 745 /** Pointer to HDA codec to use. */ 755 746 R3PTRTYPE(PHDACODEC) pCodec; 756 union 757 { 758 /** List of associated LUN drivers (HDADRIVER). */ 759 RTLISTANCHOR lstDrv; 760 /** Padding for alignment. */ 761 struct 762 { 763 R3PTRTYPE(void *) dummy1; 764 R3PTRTYPE(void *) dummy2; 765 } dummy; 766 }; 747 /** List of associated LUN drivers (HDADRIVER). */ 748 RTLISTANCHORR3 lstDrv; 767 749 /** The device' software mixer. */ 768 750 R3PTRTYPE(PAUDIOMIXER) pMixer;
Note:
See TracChangeset
for help on using the changeset viewer.