Version 0.1.9 from FTP

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@332 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Mark Spencer
2001-06-13 20:36:52 +00:00
parent 723b819bec
commit e2a8ee869e
28 changed files with 98 additions and 1 deletions

View File

@@ -59,6 +59,9 @@ int ast_filerename(char *oldname, char *newname, char *fmt);
/* Delete a given file in a given format, or if fmt is NULL, then do so for all */
int ast_filedelete(char *filename, char *fmt);
/* Copy a given file in a given format, or if fmt is NULL, then do so for all */
int ast_filecopy(char *oldname, char *newname, char *fmt);
/* 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(struct ast_channel *c, char *breakon);