dect
/
asterisk
Archived
13
0
Fork 0

Version 0.2.0 from FTP

git-svn-id: http://svn.digium.com/svn/asterisk/trunk@480 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
markster 2002-07-01 04:04:36 +00:00
parent 91902732c5
commit 20ac1c6a5d
1 changed files with 10 additions and 0 deletions

View File

@ -17,6 +17,8 @@
#include <asterisk/channel.h>
#include <asterisk/file.h>
#include <time.h>
#if defined(__cplusplus) || defined(c_plusplus)
extern "C" {
#endif
@ -54,6 +56,14 @@ int ast_say_digits(struct ast_channel *chan, int num, char *ints, char *lang);
*/
int ast_say_digit_str(struct ast_channel *chan, char *num, char *ints, char *lang);
int ast_say_datetime(struct ast_channel *chan, time_t t, char *ints, char *lang);
int ast_say_time(struct ast_channel *chan, time_t t, char *ints, char *lang);
int ast_say_date(struct ast_channel *chan, time_t t, char *ints, char *lang);
int ast_say_datetime_from_now(struct ast_channel *chan, time_t t, char *ints, char *lang);
#if defined(__cplusplus) || defined(c_plusplus)
}
#endif