Version 0.2.0 from FTP

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@480 65c4cc65-6c06-0410-ace0-fbb531ad65f3
1.0
Mark Spencer 23 years ago
parent cdd947a98b
commit 9bcb56b600

@ -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

Loading…
Cancel
Save