Archived
14
0
Fork 0

Merge another small doxygen change from team/russell/chan_refcount to indicate

that a channel doesn't need to be locked before calling a certain function.


git-svn-id: http://svn.digium.com/svn/asterisk/trunk@90141 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
russell 2007-11-28 23:57:30 +00:00
parent 7d8b10cc2f
commit bf1706909c

View file

@ -145,10 +145,15 @@ int ast_audiohook_detach(struct ast_audiohook *audiohook);
*/
int ast_audiohook_detach_list(struct ast_audiohook_list *audiohook_list);
/*! \brief Detach specified source audiohook from channel
/*!
* \brief Detach specified source audiohook from channel
*
* \param chan Channel to detach from
* \param source Name of source to detach
*
* \return Returns 0 on success, -1 on failure
*
* \note The channel does not need to be locked before calling this function.
*/
int ast_audiohook_detach_source(struct ast_channel *chan, const char *source);