提交 53967643 authored 作者: Anthony Minessale's avatar Anthony Minessale

lame

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@749 d0543943-73ff-0310-b7d9-9358b9ac24b2
上级 68b3707e
#include <switch.h> #include <switch.h>
void fs_core_set_globals(void)
{
switch_core_set_globals();
}
int fs_core_init(char *path)
{
switch_status status;
if (switch_strlen_zero(path)) {
path = NULL;
}
status = switch_core_init(path);
return status == SWITCH_STATUS_SUCCESS ? 1 : 0;
}
int fs_loadable_module_init(void)
{
return switch_loadable_module_init() == SWITCH_STATUS_SUCCESS ? 1 : 0;
}
void fs_console_loop(void)
{
switch_console_loop();
}
void fs_console_log(char *msg) void fs_console_log(char *msg)
{ {
switch_console_printf(SWITCH_CHANNEL_CONSOLE, msg); switch_console_printf(SWITCH_CHANNEL_CONSOLE, msg);
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论