@ -142,19 +142,19 @@ char ast_waitstream_full(struct ast_channel *c, char *breakon, int audiofd, int
//! Starts reading from a file
/*!
* \ param filename the name of the file to write to
* \ param type format of file you wish to write out to
* \ param filename the name of the file to read from
* \ param type format of file you wish to read from
* \ param comment comment to go with
* \ param o flags output file flags
* \ param flags file flags
* \ param check ( unimplemented , hence negligible )
* \ param mode Open mode
* Open an incoming file stream . o flags are flags for the open ( ) command , and
* if check is non - zero , then it will not w rit e a file if there are any files that
* Open an incoming file stream . flags are flags for the open ( ) command , and
* if check is non - zero , then it will not read a file if there are any files that
* start with that name and have an extension
* Please note , this is a blocking function . Program execution will not return until ast_waitstream completes it ' s execution .
* Returns a struct ast_filestream on success , NULL on failure
*/
struct ast_filestream * ast_readfile ( char * filename , char * type , char * comment , int o flags, int check , mode_t mode ) ;
struct ast_filestream * ast_readfile ( char * filename , char * type , char * comment , int flags, int check , mode_t mode ) ;
//! Starts writing a file
/*!
@ -170,7 +170,7 @@ struct ast_filestream *ast_readfile(char *filename, char *type, char *comment, i
* Please note , this is a blocking function . Program execution will not return until ast_waitstream completes it ' s execution .
* Returns a struct ast_filestream on success , NULL on failure
*/
struct ast_filestream * ast_writefile ( char * filename , char * type , char * comment , int o flags, int check , mode_t mode ) ;
struct ast_filestream * ast_writefile ( char * filename , char * type , char * comment , int flags, int check , mode_t mode ) ;
//! Writes a frame to a stream
/*!