Changeset 05b59393 in mainline for uspace/lib/hound/src/client.c
- Timestamp:
- 2017-10-04T18:02:14Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- c9e88da
- Parents:
- 0b2d369
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/hound/src/client.c
r0b2d369 r05b59393 48 48 49 49 /** Stream structure */ 50 typedefstruct hound_stream {50 struct hound_stream { 51 51 /** link in context's list */ 52 52 link_t link; … … 59 59 /** Stream flags */ 60 60 int flags; 61 } hound_stream_t;61 }; 62 62 63 63 /** … … 72 72 73 73 /** Hound client context structure */ 74 typedefstruct hound_context {74 struct hound_context { 75 75 /** Audio session */ 76 76 hound_sess_t *session; … … 89 89 /** Assigned context id */ 90 90 hound_context_id_t id; 91 } hound_context_t;91 }; 92 92 93 93 /**
Note:
See TracChangeset
for help on using the changeset viewer.