Changeset 63538 in vbox
- Timestamp:
- Aug 16, 2016 10:58:03 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/pdmaudioifs.h
r63534 r63538 1018 1018 * @param pInterface Pointer to the interface structure containing the called function pointer. 1019 1019 * @param pStream Pointer to audio stream. 1020 * @param pvBuf Pointer to audio data buffer to play. 1021 * @param cbBuf Size (in bytes) of audio data buffer. 1022 * @param pcbWritten Returns number of bytes written. Optional.1020 * @param pvBuf Pointer to audio data buffer to play. Currently not used and must be NULL. 1021 * @param cbBuf Size (in bytes) of audio data buffer. Currently not used and must be 0. 1022 * @param pcbWritten Returns number of bytes written. Optional. 1023 1023 */ 1024 1024 DECLR3CALLBACKMEMBER(int, pfnStreamPlay, (PPDMIHOSTAUDIO pInterface, PPDMAUDIOSTREAM pStream, const void *pvBuf, uint32_t cbBuf, uint32_t *pcbWritten)); … … 1030 1030 * @param pInterface Pointer to the interface structure containing the called function pointer. 1031 1031 * @param pStream Pointer to audio stream. 1032 * @param pvBuf Buffer where to store read audio data. 1033 * @param cbBuf Size (in bytes) of buffer. 1034 * @param pcbRead Returns number of bytes read. Optional.1032 * @param pvBuf Buffer where to store read audio data. Currently not used and must be NULL. 1033 * @param cbBuf Size (in bytes) of buffer. Currently not used and must be 0. 1034 * @param pcbRead Returns number of bytes read. Optional. 1035 1035 */ 1036 1036 DECLR3CALLBACKMEMBER(int, pfnStreamCapture, (PPDMIHOSTAUDIO pInterface, PPDMAUDIOSTREAM pStream, void *pvBuf, uint32_t cbBuf, uint32_t *pcbRead));
Note:
See TracChangeset
for help on using the changeset viewer.