Skip to content
项目
群组
代码片段
帮助
正在加载...
登录
切换导航
F
freeswitch
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
张华
freeswitch
Commits
14ef54cd
提交
14ef54cd
authored
6月 01, 2011
作者:
Jeff Lenk
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
FS-3315 Fix this differently convert to cdecl so SWIG likes
上级
7bbbb9cc
隐藏空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
3 行增加
和
8 行删除
+3
-8
switch_platform.h
src/include/switch_platform.h
+0
-5
switch_regex.h
src/include/switch_regex.h
+1
-1
switch_types.h
src/include/switch_types.h
+1
-1
switch_regex.c
src/switch_regex.c
+1
-1
没有找到文件。
src/include/switch_platform.h
浏览文件 @
14ef54cd
...
@@ -137,17 +137,14 @@ typedef int gid_t;
...
@@ -137,17 +137,14 @@ typedef int gid_t;
#ifdef WIN32
#ifdef WIN32
#if defined(SWITCH_CORE_DECLARE_STATIC)
#if defined(SWITCH_CORE_DECLARE_STATIC)
#define SWITCH_DECLARE(type) type __stdcall
#define SWITCH_DECLARE(type) type __stdcall
#define SWITCH_DECLARE_TYPEDEF(type, name) type (__stdcall name)
#define SWITCH_DECLARE_NONSTD(type) type __cdecl
#define SWITCH_DECLARE_NONSTD(type) type __cdecl
#define SWITCH_DECLARE_DATA
#define SWITCH_DECLARE_DATA
#elif defined(FREESWITCHCORE_EXPORTS)
#elif defined(FREESWITCHCORE_EXPORTS)
#define SWITCH_DECLARE(type) __declspec(dllexport) type __stdcall
#define SWITCH_DECLARE(type) __declspec(dllexport) type __stdcall
#define SWITCH_DECLARE_TYPEDEF(type, name) __declspec(dllexport) type (__stdcall name)
#define SWITCH_DECLARE_NONSTD(type) __declspec(dllexport) type __cdecl
#define SWITCH_DECLARE_NONSTD(type) __declspec(dllexport) type __cdecl
#define SWITCH_DECLARE_DATA __declspec(dllexport)
#define SWITCH_DECLARE_DATA __declspec(dllexport)
#else
#else
#define SWITCH_DECLARE(type) __declspec(dllimport) type __stdcall
#define SWITCH_DECLARE(type) __declspec(dllimport) type __stdcall
#define SWITCH_DECLARE_TYPEDEF(type, name) __declspec(dllimport) type (__stdcall name)
#define SWITCH_DECLARE_NONSTD(type) __declspec(dllimport) type __cdecl
#define SWITCH_DECLARE_NONSTD(type) __declspec(dllimport) type __cdecl
#define SWITCH_DECLARE_DATA __declspec(dllimport)
#define SWITCH_DECLARE_DATA __declspec(dllimport)
#endif
#endif
...
@@ -177,7 +174,6 @@ typedef int gid_t;
...
@@ -177,7 +174,6 @@ typedef int gid_t;
#define O_BINARY 0
#define O_BINARY 0
#if (defined(__GNUC__) || defined(__SUNPRO_CC) || defined (__SUNPRO_C)) && defined(SWITCH_API_VISIBILITY)
#if (defined(__GNUC__) || defined(__SUNPRO_CC) || defined (__SUNPRO_C)) && defined(SWITCH_API_VISIBILITY)
#define SWITCH_DECLARE(type) __attribute__((visibility("default"))) type
#define SWITCH_DECLARE(type) __attribute__((visibility("default"))) type
#define SWITCH_DECLARE_TYPEDEF(type, name) type (name)
#define SWITCH_DECLARE_NONSTD(type) __attribute__((visibility("default"))) type
#define SWITCH_DECLARE_NONSTD(type) __attribute__((visibility("default"))) type
#define SWITCH_DECLARE_DATA __attribute__((visibility("default")))
#define SWITCH_DECLARE_DATA __attribute__((visibility("default")))
#define SWITCH_MOD_DECLARE(type) __attribute__((visibility("default"))) type
#define SWITCH_MOD_DECLARE(type) __attribute__((visibility("default"))) type
...
@@ -186,7 +182,6 @@ typedef int gid_t;
...
@@ -186,7 +182,6 @@ typedef int gid_t;
#define SWITCH_DECLARE_CLASS __attribute__((visibility("default")))
#define SWITCH_DECLARE_CLASS __attribute__((visibility("default")))
#else
#else
#define SWITCH_DECLARE(type) type
#define SWITCH_DECLARE(type) type
#define SWITCH_DECLARE_TYPEDEF(type, name) type (name)
#define SWITCH_DECLARE_NONSTD(type) type
#define SWITCH_DECLARE_NONSTD(type) type
#define SWITCH_DECLARE_DATA
#define SWITCH_DECLARE_DATA
#define SWITCH_MOD_DECLARE(type) type
#define SWITCH_MOD_DECLARE(type) type
...
...
src/include/switch_regex.h
浏览文件 @
14ef54cd
...
@@ -73,7 +73,7 @@ SWITCH_DECLARE(switch_status_t) switch_regex_match_partial(const char *target, c
...
@@ -73,7 +73,7 @@ SWITCH_DECLARE(switch_status_t) switch_regex_match_partial(const char *target, c
SWITCH_DECLARE
(
void
)
switch_capture_regex
(
switch_regex_t
*
re
,
int
match_count
,
const
char
*
field_data
,
SWITCH_DECLARE
(
void
)
switch_capture_regex
(
switch_regex_t
*
re
,
int
match_count
,
const
char
*
field_data
,
int
*
ovector
,
const
char
*
var
,
switch_cap_callback_t
callback
,
void
*
user_data
);
int
*
ovector
,
const
char
*
var
,
switch_cap_callback_t
callback
,
void
*
user_data
);
SWITCH_DECLARE
(
void
)
switch_regex_set_var_callback
(
const
char
*
var
,
const
char
*
val
,
void
*
user_data
);
SWITCH_DECLARE
_NONSTD
(
void
)
switch_regex_set_var_callback
(
const
char
*
var
,
const
char
*
val
,
void
*
user_data
);
#define switch_regex_safe_free(re) if (re) {\
#define switch_regex_safe_free(re) if (re) {\
switch_regex_free(re);\
switch_regex_free(re);\
...
...
src/include/switch_types.h
浏览文件 @
14ef54cd
...
@@ -1690,7 +1690,7 @@ struct switch_console_callback_match {
...
@@ -1690,7 +1690,7 @@ struct switch_console_callback_match {
};
};
typedef
struct
switch_console_callback_match
switch_console_callback_match_t
;
typedef
struct
switch_console_callback_match
switch_console_callback_match_t
;
typedef
SWITCH_DECLARE_TYPEDEF
(
void
,
*
switch_cap_callback_t
)
(
const
char
*
var
,
const
char
*
val
,
void
*
user_data
);
typedef
void
(
*
switch_cap_callback_t
)
(
const
char
*
var
,
const
char
*
val
,
void
*
user_data
);
typedef
switch_status_t
(
*
switch_console_complete_callback_t
)
(
const
char
*
,
const
char
*
,
switch_console_callback_match_t
**
matches
);
typedef
switch_status_t
(
*
switch_console_complete_callback_t
)
(
const
char
*
,
const
char
*
,
switch_console_callback_match_t
**
matches
);
typedef
switch_bool_t
(
*
switch_media_bug_callback_t
)
(
switch_media_bug_t
*
,
void
*
,
switch_abc_type_t
);
typedef
switch_bool_t
(
*
switch_media_bug_callback_t
)
(
switch_media_bug_t
*
,
void
*
,
switch_abc_type_t
);
typedef
switch_bool_t
(
*
switch_tone_detect_callback_t
)
(
switch_core_session_t
*
,
const
char
*
,
const
char
*
);
typedef
switch_bool_t
(
*
switch_tone_detect_callback_t
)
(
switch_core_session_t
*
,
const
char
*
,
const
char
*
);
...
...
src/switch_regex.c
浏览文件 @
14ef54cd
...
@@ -249,7 +249,7 @@ SWITCH_DECLARE(switch_status_t) switch_regex_match(const char *target, const cha
...
@@ -249,7 +249,7 @@ SWITCH_DECLARE(switch_status_t) switch_regex_match(const char *target, const cha
return
switch_regex_match_partial
(
target
,
expression
,
&
partial
);
return
switch_regex_match_partial
(
target
,
expression
,
&
partial
);
}
}
SWITCH_DECLARE
(
void
)
switch_regex_set_var_callback
(
const
char
*
var
,
const
char
*
val
,
void
*
user_data
)
SWITCH_DECLARE
_NONSTD
(
void
)
switch_regex_set_var_callback
(
const
char
*
var
,
const
char
*
val
,
void
*
user_data
)
{
{
switch_core_session_t
*
session
=
(
switch_core_session_t
*
)
user_data
;
switch_core_session_t
*
session
=
(
switch_core_session_t
*
)
user_data
;
switch_channel_t
*
channel
=
switch_core_session_get_channel
(
session
);
switch_channel_t
*
channel
=
switch_core_session_get_channel
(
session
);
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论