From b99db9aabff0bb978e65ba47f816cfee3b443df5 Mon Sep 17 00:00:00 2001 From: Michael Jerris Date: Fri, 30 Mar 2007 17:14:28 +0000 Subject: [PATCH] I was told that the rules for spanish are the same as for english. So for now, I will add an interface using the same module and functions for "es". If there are changes to be made in the future, we can split this up into multiple modules. git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@4809 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- src/mod/say/mod_say_en/mod_say_en.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/mod/say/mod_say_en/mod_say_en.c b/src/mod/say/mod_say_en/mod_say_en.c index 53f21c8d20..52d8950122 100644 --- a/src/mod/say/mod_say_en/mod_say_en.c +++ b/src/mod/say/mod_say_en/mod_say_en.c @@ -510,9 +510,15 @@ static switch_status_t en_say(switch_core_session_t *session, char *tosay, switc return SWITCH_STATUS_FALSE; } +static const switch_say_interface_t es_say_interface = { + /*.name */ "es", + /*.say_function */ en_say, +}; + static const switch_say_interface_t en_say_interface = { /*.name */ "en", /*.say_function */ en_say, + /*.next */ &es_say_interface }; static switch_loadable_module_interface_t say_en_module_interface = {