Changeset f3fced0 in mainline for uspace/srv/audio/hound/hound.h


Ignore:
Timestamp:
2012-07-13T05:39:36Z (12 years ago)
Author:
Jan Vesely <jano.vesely@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
9b2ac3d
Parents:
63d6ff9
Message:

hound: Implement connect code.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/audio/hound/hound.h

    r63d6ff9 rf3fced0  
    5252        list_t devices;
    5353        list_t sources;
    54         list_t available_sources;
    5554        list_t sinks;
    5655} hound_t;
     
    6059int hound_add_source(hound_t *hound, audio_source_t *source);
    6160int hound_add_sink(hound_t *hound, audio_sink_t *sink);
    62 int hound_connect(const char* source_name, const char* sink_name);
    63 int hound_disconnect(const char* source_name, const char* sink_name);
     61int hound_connect(hound_t *hound, const char* source_name, const char* sink_name);
     62int hound_disconnect(hound_t *hound, const char* source_name, const char* sink_name);
    6463
    6564#endif
Note: See TracChangeset for help on using the changeset viewer.