Changeset 54491 in vbox for trunk/include/VBox
- Timestamp:
- Feb 25, 2015 1:23:21 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/pdmaudioifs.h
r54368 r54491 568 568 pThis->IHostAudio.pfnInitOut = _aDrvName##InitOut; \ 569 569 pThis->IHostAudio.pfnIsEnabled = _aDrvName##IsEnabled; \ 570 pThis->IHostAudio.pfnPlayOut = _aDrvName##PlayOut; 570 pThis->IHostAudio.pfnPlayOut = _aDrvName##PlayOut; \ 571 pThis->IHostAudio.pfnShutdown = _aDrvName##Shutdown; 571 572 572 573 /** Pointer to a host audio interface. */ … … 584 585 */ 585 586 DECLR3CALLBACKMEMBER(int, pfnInit, (PPDMIHOSTAUDIO pInterface)); 587 588 /** 589 * Shuts down the host-specific audio device. 590 * 591 * @returns VBox status code. 592 * @param pInterface Pointer to the interface structure containing the called function pointer. 593 */ 594 DECLR3CALLBACKMEMBER(void, pfnShutdown, (PPDMIHOSTAUDIO pInterface)); 595 586 596 /** 587 597 * Initialize the host-specific audio device for input stream.
Note:
See TracChangeset
for help on using the changeset viewer.