Changeset 88044 in vbox for trunk/include/VBox/vmm
- Timestamp:
- Mar 9, 2021 1:18:37 PM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 143175
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/pdmaudioifs.h
r88041 r88044 352 352 /** 353 353 * Audio device info (enumeration result). 354 * @sa PDMAUDIO DEVICEENUM, PDMIHOSTAUDIO::pfnGetDevices354 * @sa PDMAUDIOHOSTENUM, PDMIHOSTAUDIO::pfnGetDevices 355 355 */ 356 356 typedef struct PDMAUDIODEVICE 357 357 { 358 /** List entry (like PDMAUDIO DEVICEENUM::LstDevices). */358 /** List entry (like PDMAUDIOHOSTENUM::LstDevices). */ 359 359 RTLISTNODE Node; 360 360 /** Magic value (PDMAUDIODEVICE_MAGIC). */ … … 404 404 405 405 /** 406 * A naudio device enumeration result.406 * A host audio device enumeration result. 407 407 * 408 408 * @sa PDMIHOSTAUDIO::pfnGetDevices 409 409 */ 410 typedef struct PDMAUDIODEVICEENUM 411 { 410 typedef struct PDMAUDIOHOSTENUM 411 { 412 /** Magic value (PDMAUDIOHOSTENUM_MAGIC). */ 413 uint32_t uMagic; 414 /** Number of audio devices in the list. */ 415 uint32_t cDevices; 412 416 /** List of audio devices (PDMAUDIODEVICE). */ 413 417 RTLISTANCHOR LstDevices; 414 /** Number of audio devices in the list. */ 415 uint32_t cDevices; 416 } PDMAUDIODEVICEENUM; 418 } PDMAUDIOHOSTENUM; 417 419 /** Pointer to an audio device enumeration result. */ 418 typedef PDMAUDIO DEVICEENUM *PPDMAUDIODEVICEENUM;420 typedef PDMAUDIOHOSTENUM *PPDMAUDIOHOSTENUM; 419 421 /** Pointer to a const audio device enumeration result. */ 420 typedef PDMAUDIODEVICEENUM const *PCPDMAUDIODEVICEENUM; 422 typedef PDMAUDIOHOSTENUM const *PCPDMAUDIOHOSTENUM; 423 424 /** Magic for the host audio device enumeration. (Herbert Jeffrey "Herbie" Hancock) */ 425 #define PDMAUDIOHOSTENUM_MAGIC UINT32_C(0x19400412) 426 421 427 422 428 /** … … 1652 1658 * @param pDeviceEnum Where to return the enumerated audio devices. 1653 1659 */ 1654 DECLR3CALLBACKMEMBER(int, pfnGetDevices, (PPDMIHOSTAUDIO pInterface, PPDMAUDIO DEVICEENUM pDeviceEnum));1660 DECLR3CALLBACKMEMBER(int, pfnGetDevices, (PPDMIHOSTAUDIO pInterface, PPDMAUDIOHOSTENUM pDeviceEnum)); 1655 1661 1656 1662 /**
Note:
See TracChangeset
for help on using the changeset viewer.