summaryrefslogtreecommitdiff
path: root/include/asterisk
diff options
context:
space:
mode:
authorMark Spencer <markster@digium.com>2001-06-13 20:36:52 +0000
committerMark Spencer <markster@digium.com>2001-06-13 20:36:52 +0000
commite2a8ee869eb63ef29113ca5ba98cee667a4ebaf8 (patch)
tree7f6a7d6269bd373ed96f3f840b13f8fbe86e5399 /include/asterisk
parent723b819bece0c41b63dcc5b1e8121a72d9c1cd1f (diff)
Version 0.1.9 from FTP
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@332 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'include/asterisk')
-rwxr-xr-xinclude/asterisk/file.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/asterisk/file.h b/include/asterisk/file.h
index 5e424358b..95c77f6b7 100755
--- a/include/asterisk/file.h
+++ b/include/asterisk/file.h
@@ -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);