]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
fix doxygen
authorAnthony Minessale <anthony.minessale@gmail.com>
Fri, 27 Jan 2006 22:21:02 +0000 (22:21 +0000)
committerAnthony Minessale <anthony.minessale@gmail.com>
Fri, 27 Jan 2006 22:21:02 +0000 (22:21 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@463 d0543943-73ff-0310-b7d9-9358b9ac24b2

src/include/switch_ivr.h

index 9b0560c42735f96634a3ee1e34b6befb9dd529e3..4a4a6cdfda70cbd0a957e4a632ef7d091451e4f7 100644 (file)
@@ -55,7 +55,9 @@ extern "C" {
 /*!
   \brief Wait for DTMF digits calling a pluggable callback function when digits are collected.
   \param session the session to read.
-  \param dtmf_collection_callback code to execute if any dtmf is dialed during the recording
+  \param dtmf_callback code to execute if any dtmf is dialed during the recording
+  \param buf an object to maintain across calls
+  \param buflen the size of buf
   \return SWITCH_STATUS_SUCCESS to keep the collection moving.
 */
 SWITCH_DECLARE(switch_status) switch_ivr_collect_digits_callback(switch_core_session *session,
@@ -86,6 +88,8 @@ SWITCH_DECLARE(switch_status) switch_ivr_collect_digits_count(switch_core_sessio
   \param file the path to the file
   \param timer_name the name of a timer to use input will be absorbed (NULL to time off the session input).
   \param dtmf_callback code to execute if any dtmf is dialed during the playback
+  \param buf an object to maintain across calls
+  \param buflen the size of buf
   \return SWITCH_STATUS_SUCCESS if all is well
   \note passing a NULL dtmf_callback nad a not NULL buf indicates to copy any dtmf to buf and stop playback.
 */
@@ -103,6 +107,8 @@ SWITCH_DECLARE(switch_status) switch_ivr_play_file(switch_core_session *session,
   \param session the session to record from
   \param file the path to the file
   \param dtmf_callback code to execute if any dtmf is dialed during the recording
+  \param buf an object to maintain across calls
+  \param buflen the size of buf
   \return SWITCH_STATUS_SUCCESS if all is well
   \note passing a NULL dtmf_callback nad a not NULL buf indicates to copy any dtmf to buf and stop recording.
 */