VirtualBox

Changeset 90004 in vbox for trunk/src/VBox/Devices/Audio


Ignore:
Timestamp:
Jul 2, 2021 6:46:18 PM (4 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
145483
Message:

AudioTest: doxygen fixes. bugref:10008

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Devices/Audio/AudioTest.cpp

    r89994 r90004  
    12751275 *
    12761276 * @returns VBox status code.
    1277  * @param   Obj                 Audio test object to write to.
     1277 * @param   hObj                Handle to the audio test object to write to.
    12781278 * @param   pvBuf               Pointer to data to write.
    12791279 * @param   cbBuf               Size (in bytes) of \a pvBuf to write.
    12801280 */
    1281 int AudioTestObjWrite(AUDIOTESTOBJ Obj, const void *pvBuf, size_t cbBuf)
    1282 {
    1283     AUDIOTESTOBJINT *pThis = Obj;
     1281int AudioTestObjWrite(AUDIOTESTOBJ hObj, const void *pvBuf, size_t cbBuf)
     1282{
     1283    AUDIOTESTOBJINT *pThis = hObj;
    12841284
    12851285    /** @todo Generalize this function more once we have more object types. */
     
    12931293 *
    12941294 * @returns VBox status code.
    1295  * @param   Obj                 Test object to add meta data for.
     1295 * @param   pObj                Test object to add meta data for.
    12961296 * @param   pszFormat           Format string to add.
    12971297 * @param   va                  Variable arguments list to use for the format string.
     
    13171317 *
    13181318 * @returns VBox status code.
    1319  * @param   Obj                 Test object to add meta data for.
     1319 * @param   hObj                Handle to the test object to add meta data for.
    13201320 * @param   pszFormat           Format string to add.
    13211321 * @param   ...                 Variable arguments for the format string.
    13221322 */
    1323 int AudioTestObjAddMetadataStr(AUDIOTESTOBJ Obj, const char *pszFormat, ...)
    1324 {
    1325     AUDIOTESTOBJINT *pThis = Obj;
     1323int AudioTestObjAddMetadataStr(AUDIOTESTOBJ hObj, const char *pszFormat, ...)
     1324{
     1325    AUDIOTESTOBJINT *pThis = hObj;
    13261326
    13271327    va_list va;
     
    13381338 *
    13391339 * @returns VBox status code.
    1340  * @param   Obj                 Audio test object to close.
    1341  */
    1342 int AudioTestObjClose(AUDIOTESTOBJ Obj)
    1343 {
    1344     AUDIOTESTOBJINT *pThis = Obj;
     1340 * @param   hObj                Handle to the audio test object to close.
     1341 */
     1342int AudioTestObjClose(AUDIOTESTOBJ hObj)
     1343{
     1344    AUDIOTESTOBJINT *pThis = hObj;
    13451345
    13461346    if (!pThis)
     
    17811781 *
    17821782 * @returns VBox status code.
    1783  * @param   Obj                 Object to close.
     1783 * @param   pObj                Object to close.
    17841784 */
    17851785static int audioTestObjCloseInternal(PAUDIOTESTOBJINT pObj)
     
    18051805 * Finalizes an audio test set object.
    18061806 *
    1807  * @param   Obj                 Test object to finalize.
     1807 * @param   pObj                Test object to finalize.
    18081808 */
    18091809static void audioTestObjFinalize(PAUDIOTESTOBJINT pObj)
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette