Changeset bf13c9a4 in mainline for uspace/srv/audio/hound/hound_ctx.h
- Timestamp:
- 2013-04-04T12:16:46Z (12 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 23878dc
- Parents:
- b266f9e
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/audio/hound/hound_ctx.h
rb266f9e rbf13c9a4 56 56 typedef struct { 57 57 link_t link; 58 list_t fifo; 58 59 hound_ctx_t *ctx; 59 60 pcm_format_t format; 60 61 int flags; 61 62 size_t allowed_size; 63 size_t current_size; 62 64 } hound_ctx_stream_t; 63 65 … … 79 81 void hound_ctx_destroy_stream(hound_ctx_stream_t *stream); 80 82 83 int hound_ctx_stream_write(hound_ctx_stream_t *stream, const void *buffer, 84 size_t size); 85 int hound_ctx_stream_read(hound_ctx_stream_t *stream, void *buffer, size_t size); 86 81 87 #endif 82 88
Note:
See TracChangeset
for help on using the changeset viewer.