Changeset 89215 in vbox for trunk/src/VBox/ValidationKit
- Timestamp:
- May 21, 2021 10:47:13 AM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 144557
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/utils/audio/vkat.cpp
r89213 r89215 2490 2490 static int audioTestDoSelftestSvc(void) 2491 2491 { 2492 int rc = AudioTestSvcInit(); 2492 ATSSERVER Srv; 2493 int rc = AudioTestSvcInit(&Srv); 2493 2494 if (RT_SUCCESS(rc)) 2494 2495 { 2496 rc = AudioTestSvcStart(&Srv); 2495 2497 if (RT_SUCCESS(rc)) 2496 2498 { 2497 rc = AudioTestSvcStart(); 2499 ATSCLIENT Conn; 2500 rc = AudioTestSvcClientConnect(&Conn, NULL); 2498 2501 if (RT_SUCCESS(rc)) 2499 2502 { 2500 ATSCLIENT Conn; 2501 rc = AudioTestSvcClientConnect(&Conn); 2502 if (RT_SUCCESS(rc)) 2503 { 2504 rc = AudioTestSvcClientClose(&Conn); 2505 } 2503 rc = AudioTestSvcClientClose(&Conn); 2506 2504 } 2505 2506 int rc2 = AudioTestSvcShutdown(&Srv); 2507 if (RT_SUCCESS(rc)) 2508 rc = rc2; 2507 2509 } 2508 2510 }
Note:
See TracChangeset
for help on using the changeset viewer.