VirtualBox

source: vbox/trunk/src/VBox/Devices/Audio/AudioTestServiceClient.h@ 91861

Last change on this file since 91861 was 90962, checked in by vboxsync, 3 years ago

Audio/Validation Kit: Implemented support for client-mode connection timeouts. ​bugref:10008

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.3 KB
Line 
1/* $Id: AudioTestServiceClient.h 90962 2021-08-27 16:40:53Z vboxsync $ */
2/** @file
3 * AudioTestServiceClient - Audio test execution server, Public Header.
4 */
5
6/*
7 * Copyright (C) 2021 Oracle Corporation
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 */
17
18#ifndef VBOX_INCLUDED_SRC_Audio_AudioTestServiceClient_h
19#define VBOX_INCLUDED_SRC_Audio_AudioTestServiceClient_h
20#ifndef RT_WITHOUT_PRAGMA_ONCE
21# pragma once
22#endif
23
24#include "AudioTestServiceInternal.h"
25
26/**
27 * Structure for maintaining an ATS client.
28 */
29typedef struct ATSCLIENT
30{
31 /** Pointer to the selected transport layer. */
32 PCATSTRANSPORT pTransport;
33 /** Pointer to the selected transport instance to use. */
34 PATSTRANSPORTINST pTransportInst;
35 /** The opaque client instance. */
36 PATSTRANSPORTCLIENT pTransportClient;
37} ATSCLIENT;
38/** Pointer to an ATS client. */
39typedef ATSCLIENT *PATSCLIENT;
40
41/** @name Creation / destruction.
42 * @{ */
43int AudioTestSvcClientCreate(PATSCLIENT pClient);
44void AudioTestSvcClientDestroy(PATSCLIENT pClient);
45/** @} */
46
47/** @name Connection handling.
48 * @{ */
49int AudioTestSvcClientConnectEx(PATSCLIENT pClient, RTMSINTERVAL msTimeout);
50int AudioTestSvcClientConnect(PATSCLIENT pClient);
51int AudioTestSvcClientClose(PATSCLIENT pClient);
52/** @} */
53
54/** @name Option handling.
55 * @{ */
56int AudioTestSvcClientHandleOption(PATSCLIENT pClient, int ch, PCRTGETOPTUNION pVal);
57/** @} */
58
59/** @name Test set handling.
60 * @{ */
61int AudioTestSvcClientTestSetBegin(PATSCLIENT pClient, const char *pszTag);
62int AudioTestSvcClientTestSetEnd(PATSCLIENT pClient, const char *pszTag);
63int AudioTestSvcClientTestSetDownload(PATSCLIENT pClient, const char *pszTag, const char *pszPathOutAbs);
64/** @} */
65
66/** @name Tone handling.
67 * @{ */
68int AudioTestSvcClientTonePlay(PATSCLIENT pClient, PAUDIOTESTTONEPARMS pToneParms);
69int AudioTestSvcClientToneRecord(PATSCLIENT pClient, PAUDIOTESTTONEPARMS pToneParms);
70/** @} */
71
72#endif /* !VBOX_INCLUDED_SRC_Audio_AudioTestServiceClient_h */
73
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use