aboutsummaryrefslogtreecommitdiffstats
path: root/include/asterisk/file.h
diff options
context:
space:
mode:
authormarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2003-04-09 02:10:29 +0000
committermarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2003-04-09 02:10:29 +0000
commit6275b6092f595030b029ad7cbe665fa03ebddf50 (patch)
tree105ace4a237f8b32917d78da8e1199987fdac22b /include/asterisk/file.h
parent34a25ffc0a705b36c862afa3454c060793b846cd (diff)
Make voicemail timeout configurable
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@790 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'include/asterisk/file.h')
-rwxr-xr-xinclude/asterisk/file.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/asterisk/file.h b/include/asterisk/file.h
index 45b947b9b..3cc739e64 100755
--- a/include/asterisk/file.h
+++ b/include/asterisk/file.h
@@ -129,11 +129,12 @@ char ast_waitstream(struct ast_channel *c, char *breakon);
* \param breakon string of DTMF digits to break upon
* \param forward DTMF digit to fast forward upon
* \param rewind DTMF digit to rewind upon
+ * \param ms How many miliseconds to skip forward/back
* Begins playback of a stream...
* Wait for a stream to stop or for any one of a given digit to arrive, Returns 0
* if the stream finishes, the character if it was interrupted, and -1 on error
*/
-char ast_waitstream_fr(struct ast_channel *c, char *breakon, char *forward, char *rewind);
+char ast_waitstream_fr(struct ast_channel *c, char *breakon, char *forward, char *rewind, int ms);
/* Same as waitstream, but with audio output to fd and monitored fd checking. Returns
1 if monfd is ready for reading */