Skip to content
项目
群组
代码片段
帮助
正在加载...
登录
切换导航
F
freeswitch
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
张华
freeswitch
Commits
56332c92
提交
56332c92
authored
3月 10, 2016
作者:
Brian West
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
swigall
上级
bdf84bb5
全部展开
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
220 行增加
和
33 行删除
+220
-33
freeswitch_wrap.cxx
src/mod/languages/mod_managed/freeswitch_wrap.cxx
+100
-18
swig.cs
src/mod/languages/mod_managed/managed/swig.cs
+120
-15
没有找到文件。
src/mod/languages/mod_managed/freeswitch_wrap.cxx
浏览文件 @
56332c92
...
...
@@ -5701,46 +5701,68 @@ SWIGEXPORT void SWIGSTDCALL CSharp_delete_switch_t38_options_t(void * jarg1) {
}
SWIGEXPORT void SWIGSTDCALL CSharp_switch_vid_params_t_width_set(void * jarg1,
int
jarg2) {
SWIGEXPORT void SWIGSTDCALL CSharp_switch_vid_params_t_width_set(void * jarg1,
unsigned long
jarg2) {
switch_vid_params_s *arg1 = (switch_vid_params_s *) 0 ;
in
t arg2 ;
uint32_
t arg2 ;
arg1 = (switch_vid_params_s *)jarg1;
arg2 = (
in
t)jarg2;
arg2 = (
uint32_
t)jarg2;
if (arg1) (arg1)->width = arg2;
}
SWIGEXPORT
int
SWIGSTDCALL CSharp_switch_vid_params_t_width_get(void * jarg1) {
int
jresult ;
SWIGEXPORT
unsigned long
SWIGSTDCALL CSharp_switch_vid_params_t_width_get(void * jarg1) {
unsigned long
jresult ;
switch_vid_params_s *arg1 = (switch_vid_params_s *) 0 ;
in
t result;
uint32_
t result;
arg1 = (switch_vid_params_s *)jarg1;
result = (
in
t) ((arg1)->width);
jresult = result;
result = (
uint32_
t) ((arg1)->width);
jresult =
(unsigned long)
result;
return jresult;
}
SWIGEXPORT void SWIGSTDCALL CSharp_switch_vid_params_t_height_set(void * jarg1,
int
jarg2) {
SWIGEXPORT void SWIGSTDCALL CSharp_switch_vid_params_t_height_set(void * jarg1,
unsigned long
jarg2) {
switch_vid_params_s *arg1 = (switch_vid_params_s *) 0 ;
in
t arg2 ;
uint32_
t arg2 ;
arg1 = (switch_vid_params_s *)jarg1;
arg2 = (
in
t)jarg2;
arg2 = (
uint32_
t)jarg2;
if (arg1) (arg1)->height = arg2;
}
SWIGEXPORT
int
SWIGSTDCALL CSharp_switch_vid_params_t_height_get(void * jarg1) {
int
jresult ;
SWIGEXPORT
unsigned long
SWIGSTDCALL CSharp_switch_vid_params_t_height_get(void * jarg1) {
unsigned long
jresult ;
switch_vid_params_s *arg1 = (switch_vid_params_s *) 0 ;
in
t result;
uint32_
t result;
arg1 = (switch_vid_params_s *)jarg1;
result = (int) ((arg1)->height);
jresult = result;
result = (uint32_t) ((arg1)->height);
jresult = (unsigned long)result;
return jresult;
}
SWIGEXPORT void SWIGSTDCALL CSharp_switch_vid_params_t_fps_set(void * jarg1, unsigned long jarg2) {
switch_vid_params_s *arg1 = (switch_vid_params_s *) 0 ;
uint32_t arg2 ;
arg1 = (switch_vid_params_s *)jarg1;
arg2 = (uint32_t)jarg2;
if (arg1) (arg1)->fps = arg2;
}
SWIGEXPORT unsigned long SWIGSTDCALL CSharp_switch_vid_params_t_fps_get(void * jarg1) {
unsigned long jresult ;
switch_vid_params_s *arg1 = (switch_vid_params_s *) 0 ;
uint32_t result;
arg1 = (switch_vid_params_s *)jarg1;
result = (uint32_t) ((arg1)->fps);
jresult = (unsigned long)result;
return jresult;
}
...
...
@@ -14204,6 +14226,20 @@ SWIGEXPORT int SWIGSTDCALL CSharp_switch_core_file_close(void * jarg1) {
}
SWIGEXPORT int SWIGSTDCALL CSharp_switch_core_file_command(void * jarg1, int jarg2) {
int jresult ;
switch_file_handle_t *arg1 = (switch_file_handle_t *) 0 ;
switch_file_command_t arg2 ;
switch_status_t result;
arg1 = (switch_file_handle_t *)jarg1;
arg2 = (switch_file_command_t)jarg2;
result = (switch_status_t)switch_core_file_command(arg1,arg2);
jresult = result;
return jresult;
}
SWIGEXPORT int SWIGSTDCALL CSharp_switch_core_file_truncate(void * jarg1, long long jarg2) {
int jresult ;
switch_file_handle_t *arg1 = (switch_file_handle_t *) 0 ;
...
...
@@ -14218,13 +14254,15 @@ SWIGEXPORT int SWIGSTDCALL CSharp_switch_core_file_truncate(void * jarg1, long l
}
SWIGEXPORT int SWIGSTDCALL CSharp_switch_core_file_has_video(void * jarg1) {
SWIGEXPORT int SWIGSTDCALL CSharp_switch_core_file_has_video(void * jarg1
, int jarg2
) {
int jresult ;
switch_file_handle_t *arg1 = (switch_file_handle_t *) 0 ;
switch_bool_t arg2 ;
switch_bool_t result;
arg1 = (switch_file_handle_t *)jarg1;
result = (switch_bool_t)switch_core_file_has_video(arg1);
arg2 = (switch_bool_t)jarg2;
result = (switch_bool_t)switch_core_file_has_video(arg1,arg2);
jresult = result;
return jresult;
}
...
...
@@ -24974,6 +25012,28 @@ SWIGEXPORT void * SWIGSTDCALL CSharp_switch_file_interface_file_get_string_get(v
}
SWIGEXPORT void SWIGSTDCALL CSharp_switch_file_interface_file_command_set(void * jarg1, void * jarg2) {
switch_file_interface *arg1 = (switch_file_interface *) 0 ;
switch_status_t (*arg2)(switch_file_handle_t *,switch_file_command_t) = (switch_status_t (*)(switch_file_handle_t *,switch_file_command_t)) 0 ;
arg1 = (switch_file_interface *)jarg1;
arg2 = (switch_status_t (*)(switch_file_handle_t *,switch_file_command_t))jarg2;
if (arg1) (arg1)->file_command = arg2;
}
SWIGEXPORT void * SWIGSTDCALL CSharp_switch_file_interface_file_command_get(void * jarg1) {
void * jresult ;
switch_file_interface *arg1 = (switch_file_interface *) 0 ;
switch_status_t (*result)(switch_file_handle_t *,switch_file_command_t) = 0 ;
arg1 = (switch_file_interface *)jarg1;
result = (switch_status_t (*)(switch_file_handle_t *,switch_file_command_t)) ((arg1)->file_command);
jresult = (void *)result;
return jresult;
}
SWIGEXPORT void SWIGSTDCALL CSharp_switch_file_interface_extens_set(void * jarg1, void * jarg2) {
switch_file_interface *arg1 = (switch_file_interface *) 0 ;
char **arg2 = (char **) 0 ;
...
...
@@ -26531,6 +26591,28 @@ SWIGEXPORT void * SWIGSTDCALL CSharp_switch_file_handle_mm_get(void * jarg1) {
}
SWIGEXPORT void SWIGSTDCALL CSharp_switch_file_handle_flag_mutex_set(void * jarg1, void * jarg2) {
switch_file_handle *arg1 = (switch_file_handle *) 0 ;
switch_mutex_t *arg2 = (switch_mutex_t *) 0 ;
arg1 = (switch_file_handle *)jarg1;
arg2 = (switch_mutex_t *)jarg2;
if (arg1) (arg1)->flag_mutex = arg2;
}
SWIGEXPORT void * SWIGSTDCALL CSharp_switch_file_handle_flag_mutex_get(void * jarg1) {
void * jresult ;
switch_file_handle *arg1 = (switch_file_handle *) 0 ;
switch_mutex_t *result = 0 ;
arg1 = (switch_file_handle *)jarg1;
result = (switch_mutex_t *) ((arg1)->flag_mutex);
jresult = (void *)result;
return jresult;
}
SWIGEXPORT void * SWIGSTDCALL CSharp_new_switch_file_handle() {
void * jresult ;
switch_file_handle *result = 0 ;
src/mod/languages/mod_managed/managed/swig.cs
浏览文件 @
56332c92
差异被折叠。
点击展开。
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论