Changeset 65737 in vbox for trunk/src/VBox/Devices
- Timestamp:
- Feb 10, 2017 4:10:45 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/DrvHostDebugAudio.cpp
r65699 r65737 258 258 * @interface_method_impl{PDMIHOSTAUDIO,pfnStreamCapture} 259 259 */ 260 static DECLCALLBACK(int) drvHostDebugAudioStreamCapture(PPDMIHOSTAUDIO pInterface, 261 PPDMAUDIOBACKENDSTREAM pStream,void *pvBuf, uint32_t cbBuf, uint32_t *pcbRead)260 static DECLCALLBACK(int) drvHostDebugAudioStreamCapture(PPDMIHOSTAUDIO pInterface, PPDMAUDIOBACKENDSTREAM pStream, 261 void *pvBuf, uint32_t cbBuf, uint32_t *pcbRead) 262 262 { 263 263 RT_NOREF(pInterface, pStream, pvBuf, cbBuf); … … 359 359 RT_NOREF(pInterface, pStream); 360 360 361 return UINT32_MAX;361 return 0; /* Never capture anything. */ 362 362 } 363 363
Note:
See TracChangeset
for help on using the changeset viewer.