Changeset 5b0cf63 in mainline for uspace/lib/hound/include
- Timestamp:
- 2018-01-25T13:42:08Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 1ab3c4b
- Parents:
- c832ab15
- git-author:
- Jiri Svoboda <jiri@…> (2017-01-24 18:40:44)
- git-committer:
- Jiri Svoboda <jiri@…> (2018-01-25 13:42:08)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/hound/include/hound/client.h
rc832ab15 r5b0cf63 47 47 typedef struct hound_stream hound_stream_t; 48 48 49 hound_context_t * 49 hound_context_t *hound_context_create_playback(const char *name, 50 50 pcm_format_t format, size_t bsize); 51 hound_context_t * 51 hound_context_t *hound_context_create_capture(const char *name, 52 52 pcm_format_t format, size_t bsize); 53 53 void hound_context_destroy(hound_context_t *hound); … … 61 61 char ***names, size_t *count); 62 62 63 errno_t hound_context_connect_target(hound_context_t *hound, const char *target);64 errno_t hound_context_disconnect_target(hound_context_t *hound, const char *target);63 errno_t hound_context_connect_target(hound_context_t *hound, const char *target); 64 errno_t hound_context_disconnect_target(hound_context_t *hound, const char *target); 65 65 66 66 hound_stream_t *hound_stream_create(hound_context_t *hound, unsigned flags,
Note:
See TracChangeset
for help on using the changeset viewer.