Changeset 89431 in vbox for trunk/src/VBox/Devices/Audio/AudioTestService.h
- Timestamp:
- Jun 1, 2021 12:57:36 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/AudioTestService.h
r89399 r89431 33 33 typedef struct ATSCALLBACKS 34 34 { 35 /** 36 * Begins a test set. Optional. 37 * 38 * @returns VBox status code. 39 * @param pvUser User-supplied pointer to context data. Optional. 40 * @param pszTag Tag of test set to begin. 41 */ 42 DECLR3CALLBACKMEMBER(int, pfnTestSetBegin, (void const *pvUser, const char *pszTag)); 43 44 /** 45 * Ends the current test set. Optional. 46 * 47 * @returns VBox status code. 48 * @param pvUser User-supplied pointer to context data. Optional. 49 * @param pszTag Tag of test set to end. 50 */ 51 DECLR3CALLBACKMEMBER(int, pfnTestSetEnd, (void const *pvUser, const char *pszTag)); 52 35 53 /** 36 54 * Plays a test tone. … … 79 97 typedef ATSSERVER *PATSSERVER; 80 98 81 82 99 int AudioTestSvcInit(PATSSERVER pThis, PCATSCALLBACKS pCallbacks); 83 100 int AudioTestSvcDestroy(PATSSERVER pThis);
Note:
See TracChangeset
for help on using the changeset viewer.