[asterisk-commits] rmudgett: trunk r397482 - /trunk/include/asterisk/musiconhold.h

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Thu Aug 22 16:29:18 CDT 2013


Author: rmudgett
Date: Thu Aug 22 16:29:16 2013
New Revision: 397482

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=397482
Log:
Update MOH start/stop routine doxygen.

Modified:
    trunk/include/asterisk/musiconhold.h

Modified: trunk/include/asterisk/musiconhold.h
URL: http://svnview.digium.com/svn/asterisk/trunk/include/asterisk/musiconhold.h?view=diff&rev=397482&r1=397481&r2=397482
==============================================================================
--- trunk/include/asterisk/musiconhold.h (original)
+++ trunk/include/asterisk/musiconhold.h Thu Aug 22 16:29:16 2013
@@ -28,20 +28,21 @@
 #endif
 
 /*!
- * \brief Turn on music on hold on a given channel 
+ * \brief Turn on music on hold on a given channel
  *
  * \param chan The channel structure that will get music on hold
  * \param mclass The class to use if the musicclass is not currently set on
- *               the channel structure.
+ *               the channel structure.  NULL and the empty string are equivalent.
  * \param interpclass The class to use if the musicclass is not currently set on
  *                    the channel structure or in the mclass argument.
+ *                    NULL and the empty string are equivalent.
  *
  * \retval Zero on success
  * \retval non-zero on failure
  */
 int ast_moh_start(struct ast_channel *chan, const char *mclass, const char *interpclass);
 
-/*! Turn off music on hold on a given channel */
+/*! \brief Turn off music on hold on a given channel */
 void ast_moh_stop(struct ast_channel *chan);
 
 void ast_install_music_functions(int (*start_ptr)(struct ast_channel *, const char *, const char *),




More information about the asterisk-commits mailing list