Ignore:
Timestamp:
2013-04-11T01:34:41Z (12 years ago)
Author:
Jan Vesely <jano.vesely@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
250828a
Parents:
f0a647c
Message:

hound: doxygen and cleanup

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/audio/hound/audio_source.c

    rf0a647c rc799138  
    4545#include "log.h"
    4646
    47 
     47/**
     48 * Initialize audio source strcture.
     49 * @param source The structure to initialize.
     50 * @param name String identifier of the audio source.
     51 * @param data Backend data.
     52 * @param connection_change Connect/disconnect callback.
     53 * @param update_available_data Data request callback.
     54 * @return Error code.
     55 */
    4856int audio_source_init(audio_source_t *source, const char *name, void *data,
    4957    int (*connection_change)(audio_source_t *, bool new),
     
    6977}
    7078
     79/**
     80 * Release resources claimed by initialization.
     81 * @param source The structure to cleanup.
     82 */
    7183void audio_source_fini(audio_source_t *source)
    7284{
Note: See TracChangeset for help on using the changeset viewer.