aboutsummaryrefslogtreecommitdiffstats
path: root/include/asterisk/app.h
diff options
context:
space:
mode:
authormarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2001-10-31 15:28:08 +0000
committermarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2001-10-31 15:28:08 +0000
commita881107daa6bee3ca7bc537b4c0ed7a568368cb9 (patch)
tree33d790ecbb94ae7c4cececd8b69695ccedce33f0 /include/asterisk/app.h
parentb6c1eedcbed1c6ad198bca79b889bfe3c5c698f3 (diff)
Version 0.1.10 from FTP
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@380 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'include/asterisk/app.h')
-rwxr-xr-xinclude/asterisk/app.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/include/asterisk/app.h b/include/asterisk/app.h
index ecb1ab101..bf9c5b0b4 100755
--- a/include/asterisk/app.h
+++ b/include/asterisk/app.h
@@ -18,6 +18,19 @@
#if defined(__cplusplus) || defined(c_plusplus)
extern "C" {
#endif
+//! Plays a stream and gets DTMF data from a channel
+/*!
+ * \param c Which channel one is interacting with
+ * \param prompt File to pass to ast_streamfile (the one that you wish to play)
+ * \param s The location where the DTMF data will be stored
+ * \param maxlen Max Length of the data
+ * \param timeout Timeout length waiting for data(in milliseconds). Set to 0 for standard timeout(six seconds), or -1 for no time out.
+ *
+ * This function was designed for application programmers for situations where they need
+ * to play a message and then get some DTMF data in response to the message. If a digit
+ * is pressed during playback, it will immediately break out of the message and continue
+ * execution of your code.
+ */
extern int ast_app_getdata(struct ast_channel *c, char *prompt, char *s, int maxlen, int timeout);
#if defined(__cplusplus) || defined(c_plusplus)