Changeset 90891 in vbox for trunk/src/VBox/ValidationKit/utils/audio/vkatInternal.h
- Timestamp:
- Aug 25, 2021 5:08:03 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/utils/audio/vkatInternal.h
r90887 r90891 193 193 /** Pointer to audio test TCP options. */ 194 194 typedef AUDIOTESTENVTCPOPTS *PAUDIOTESTENVTCPOPTS; 195 196 /** 197 * Structure for keeping a user context for the test service callbacks. 198 */ 199 typedef struct ATSCALLBACKCTX 200 { 201 /** The test environment bound to this context. */ 202 PAUDIOTESTENV pTstEnv; 203 /** Absolute path to the packed up test set archive. 204 * Keep it simple for now and only support one (open) archive at a time. */ 205 char szTestSetArchive[RTPATH_MAX]; 206 /** File handle to the (opened) test set archive for reading. */ 207 RTFILE hTestSetArchive; 208 /** Number of currently connected clients. */ 209 uint8_t cClients; 210 } ATSCALLBACKCTX; 211 typedef ATSCALLBACKCTX *PATSCALLBACKCTX; 195 212 196 213 /** … … 236 253 /** ATS server instance to use. */ 237 254 ATSSERVER Srv; 255 /** ATS callback context to use. */ 256 ATSCALLBACKCTX CallbackCtx; 238 257 union 239 258 {
Note:
See TracChangeset
for help on using the changeset viewer.