Changes in uspace/lib/hound/src/client.c [05b59393:07e28f8] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/hound/src/client.c
r05b59393 r07e28f8 48 48 49 49 /** Stream structure */ 50 struct hound_stream {50 typedef struct hound_stream { 51 51 /** link in context's list */ 52 52 link_t link; … … 59 59 /** Stream flags */ 60 60 int flags; 61 } ;61 } hound_stream_t; 62 62 63 63 /** … … 72 72 73 73 /** Hound client context structure */ 74 struct hound_context {74 typedef 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 } ;91 } hound_context_t; 92 92 93 93 /**
Note:
See TracChangeset
for help on using the changeset viewer.