Changeset 89461 in vbox for trunk/src/VBox
- Timestamp:
- Jun 2, 2021 10:10:57 AM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 144815
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/AudioTest.h
r89431 r89461 239 239 struct AUDIOTESTSET; 240 240 241 /** 242 * Structure specifying a single audio test entry of a test set. 243 * 244 * A test set can contain zero or more test entry (tests). 245 */ 241 246 typedef struct AUDIOTESTENTRY 242 247 { 243 248 /** List node. */ 244 249 RTLISTNODE Node; 250 /** Pointer to test set parent. */ 245 251 AUDIOTESTSET *pParent; 252 /** Friendly description of the test. */ 246 253 char szDesc[64]; 254 /** Audio test parameters this test needs to perform the actual test. */ 247 255 AUDIOTESTPARMS Parms; 248 256 /** Number of test objects bound to this test. */ … … 250 258 /** Absolute offset (in bytes) where to write the "obj_count" value later. */ 251 259 uint64_t offObjCount; 260 /** Overall test result. */ 252 261 int rc; 253 262 } AUDIOTESTENTRY;
Note:
See TracChangeset
for help on using the changeset viewer.