Changes in uspace/lib/hound/src/client.c [07e28f8:cf13b17] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/hound/src/client.c
r07e28f8 rcf13b17 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.