mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-04-15 16:39:14 +00:00
swig
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@9683 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
parent
7b537822e0
commit
7cb509bc0e
@ -92,7 +92,8 @@ SWITCH_DECLARE(void) consoleCleanLog(char *msg);
|
||||
const char *exit_sound,
|
||||
const char *confirm_macro,
|
||||
const char *confirm_key,
|
||||
int confirm_attempts, int inter_timeout, int digit_len, int timeout, int max_failures);
|
||||
int confirm_attempts, int inter_timeout, int digit_len,
|
||||
int timeout, int max_failures, int max_timeouts);
|
||||
virtual SWITCH_DECLARE_CONSTRUCTOR ~ IVRMenu();
|
||||
SWITCH_DECLARE(void) bindAction(char *action, const char *arg, const char *bind);
|
||||
SWITCH_DECLARE(void) execute(CoreSession * session, const char *name);
|
||||
|
@ -112,7 +112,8 @@ SWITCH_DECLARE_CONSTRUCTOR IVRMenu::IVRMenu(IVRMenu *main,
|
||||
int inter_timeout,
|
||||
int digit_len,
|
||||
int timeout,
|
||||
int max_failures)
|
||||
int max_failures,
|
||||
int max_timeouts)
|
||||
{
|
||||
menu = NULL;
|
||||
switch_core_new_memory_pool(&pool);
|
||||
@ -122,7 +123,7 @@ SWITCH_DECLARE_CONSTRUCTOR IVRMenu::IVRMenu(IVRMenu *main,
|
||||
}
|
||||
|
||||
switch_ivr_menu_init(&menu, main ? main->menu : NULL, name, greeting_sound, short_greeting_sound, invalid_sound,
|
||||
exit_sound, confirm_macro, confirm_key, confirm_attempts, inter_timeout, digit_len, timeout, max_failures, pool);
|
||||
exit_sound, confirm_macro, confirm_key, confirm_attempts, inter_timeout, digit_len, timeout, max_failures, max_timeouts, pool);
|
||||
|
||||
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user