Changeset 88059 in vbox for trunk/include/VBox/vmm
- Timestamp:
- Mar 9, 2021 3:33:52 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/pdmaudioifs.h
r88057 r88059 1244 1244 typedef struct PDMAUDIOSTREAM *PPDMAUDIOSTREAMCTX; 1245 1245 1246 /** @name PDMAUDIOSTREAM_WARN_FLAGS_XXX 1247 * @{ */ 1246 1248 /** No stream warning flags set. */ 1247 1249 #define PDMAUDIOSTREAM_WARN_FLAGS_NONE 0 1248 1250 /** Warned about a disabled stream. */ 1249 1251 #define PDMAUDIOSTREAM_WARN_FLAGS_DISABLED RT_BIT(0) 1252 /** @} */ 1250 1253 1251 1254 /** … … 1254 1257 typedef struct PDMAUDIOSTREAM 1255 1258 { 1256 /** List node. 1257 * @todo s/Node/ListEntry/ */ 1258 RTLISTNODE Node; 1259 /** @todo add magic (some jazz pianist). */ 1259 /** Magic value (PDMAUDIOSTREAM_MAGIC). */ 1260 uint32_t uMagic; 1261 /** Size (in bytes) of the backend-specific stream data. */ 1262 uint32_t cbBackend; 1263 /** List entry (some DrvAudio internal list). */ 1264 RTLISTNODE ListEntry; 1260 1265 /** Number of references to this stream. 1261 1266 * Only can be destroyed when the reference count reaches 0. */ … … 1264 1269 uint32_t cTriesReInit; 1265 1270 /** Warnings shown already in the release log. 1266 * See PDMAUDIOSTREAM_WARN_FLAGS_XXX defines. */1271 * See PDMAUDIOSTREAM_WARN_FLAGS_XXX. */ 1267 1272 uint32_t fWarningsShown; 1268 1273 /** Stream status flag. */ … … 1295 1300 * That way the backends do not have access to the audio connector's data. */ 1296 1301 void *pvBackend; 1297 /** Size (in bytes) of the backend-specific stream data. */1298 size_t cbBackend;1299 1302 1300 1303 /** Name of this stream. */ … … 1308 1311 } RT_UNION_NM(u); 1309 1312 } PDMAUDIOSTREAM; 1313 1314 /** Magic value for PDMAUDIOSTREAM. (Ahmad Jamal) */ 1315 #define PDMAUDIOSTREAM_MAGIC UINT32_C(0x19300702) 1310 1316 1311 1317
Note:
See TracChangeset
for help on using the changeset viewer.