Changeset 59276 in vbox for trunk/include/VBox
- Timestamp:
- Jan 7, 2016 12:00:32 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/pdmaudioifs.h
r58983 r59276 4 4 5 5 /* 6 * Copyright (C) 2006-201 5Oracle Corporation6 * Copyright (C) 2006-2016 Oracle Corporation 7 7 * 8 8 * This file is part of VirtualBox Open Source Edition (OSE), as … … 521 521 522 522 /** 523 * Checks whether the specified guest input stream is in a workingstate.523 * Checks whether the specified guest input stream is in a valid (working) state. 524 524 * 525 525 * @returns True if a host voice in is available, false if not. … … 527 527 * @param pGstStrmIn Pointer to guest input stream to check. 528 528 */ 529 DECLR3CALLBACKMEMBER(bool, pfnIs InputOK, (PPDMIAUDIOCONNECTOR pInterface, PPDMAUDIOGSTSTRMIN pGstStrmIn));530 531 /** 532 * Checks whether the specified guest output stream is in a workingstate.529 DECLR3CALLBACKMEMBER(bool, pfnIsValidIn, (PPDMIAUDIOCONNECTOR pInterface, PPDMAUDIOGSTSTRMIN pGstStrmIn)); 530 531 /** 532 * Checks whether the specified guest output stream is in a valid (working) state. 533 533 * 534 534 * @returns True if a host voice out is available, false if not. … … 536 536 * @param pGstStrmOut Pointer to guest output stream to check. 537 537 */ 538 DECLR3CALLBACKMEMBER(bool, pfnIs OutputOK, (PPDMIAUDIOCONNECTOR pInterface, PPDMAUDIOGSTSTRMOUT pGstStrmOut));538 DECLR3CALLBACKMEMBER(bool, pfnIsValidOut, (PPDMIAUDIOCONNECTOR pInterface, PPDMAUDIOGSTSTRMOUT pGstStrmOut)); 539 539 540 540 /**
Note:
See TracChangeset
for help on using the changeset viewer.