Changeset c799138 in mainline for uspace/srv/audio/hound/hound.h
- Timestamp:
- 2013-04-11T01:34:41Z (12 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 250828a
- Parents:
- f0a647c
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/audio/hound/hound.h
rf0a647c rc799138 49 49 #include "audio_sink.h" 50 50 51 51 /** The main Hound structure */ 52 52 typedef struct { 53 /** List access guard */ 53 54 fibril_mutex_t list_guard; 55 /** enumerated devices */ 54 56 list_t devices; 57 /** registered contexts */ 55 58 list_t contexts; 59 /** Provided sources */ 56 60 list_t sources; 61 /** Provided sinks */ 57 62 list_t sinks; 63 /** Existing connections. */ 58 64 list_t connections; 59 65 } hound_t;
Note:
See TracChangeset
for help on using the changeset viewer.