Changeset 95c675b in mainline for uspace/lib/hound/src/client.c
- Timestamp:
- 2017-10-17T13:11:35Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 60af4cdb
- Parents:
- dbf32b1 (diff), a416d070 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - File:
-
- 1 edited
-
uspace/lib/hound/src/client.c (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/hound/src/client.c
rdbf32b1 r95c675b 41 41 #include <stdlib.h> 42 42 #include <stdio.h> 43 #include < libarch/types.h>43 #include <types/common.h> 44 44 #include <task.h> 45 45 … … 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.
