mirror of
https://gitee.com/zlgopen/awtk.git
synced 2024-11-29 18:48:09 +08:00
update idl
This commit is contained in:
parent
471a106f52
commit
e0d8e2419b
@ -1116,6 +1116,9 @@ EXPORTS
|
||||
fscript_exec
|
||||
fscript_destroy
|
||||
fscript_eval
|
||||
fscript_global_init
|
||||
fscript_register_func
|
||||
fscript_global_deinit
|
||||
func_call_parser_init
|
||||
func_call_parser_parse
|
||||
func_call_parser_deinit
|
||||
|
@ -307,6 +307,9 @@ EXPORTS
|
||||
fscript_exec
|
||||
fscript_destroy
|
||||
fscript_eval
|
||||
fscript_global_init
|
||||
fscript_register_func
|
||||
fscript_global_deinit
|
||||
func_call_parser_init
|
||||
func_call_parser_parse
|
||||
func_call_parser_deinit
|
||||
|
@ -31659,6 +31659,47 @@
|
||||
"type": "ret_t",
|
||||
"desc": "返回RET_OK表示成功,否则表示失败。"
|
||||
}
|
||||
},
|
||||
{
|
||||
"params": [],
|
||||
"annotation": {},
|
||||
"desc": "全局初始化。",
|
||||
"name": "fscript_global_init",
|
||||
"return": {
|
||||
"type": "ret_t",
|
||||
"desc": "返回RET_OK表示成功,否则表示失败。"
|
||||
}
|
||||
},
|
||||
{
|
||||
"params": [
|
||||
{
|
||||
"type": "const char*",
|
||||
"name": "name",
|
||||
"desc": "函数名(无需加函数前缀)。"
|
||||
},
|
||||
{
|
||||
"type": "fscript_func_t*",
|
||||
"name": "func",
|
||||
"desc": "函数指针。"
|
||||
}
|
||||
],
|
||||
"annotation": {},
|
||||
"desc": "注册全局自定义函数。",
|
||||
"name": "fscript_register_func",
|
||||
"return": {
|
||||
"type": "ret_t",
|
||||
"desc": "返回RET_OK表示成功,否则表示失败。"
|
||||
}
|
||||
},
|
||||
{
|
||||
"params": [],
|
||||
"annotation": {},
|
||||
"desc": "全局释放。",
|
||||
"name": "fscript_global_deinit",
|
||||
"return": {
|
||||
"type": "ret_t",
|
||||
"desc": "返回RET_OK表示成功,否则表示失败。"
|
||||
}
|
||||
}
|
||||
],
|
||||
"events": [],
|
||||
|
@ -7939,6 +7939,47 @@
|
||||
"type": "ret_t",
|
||||
"desc": "返回RET_OK表示成功,否则表示失败。"
|
||||
}
|
||||
},
|
||||
{
|
||||
"params": [],
|
||||
"annotation": {},
|
||||
"desc": "全局初始化。",
|
||||
"name": "fscript_global_init",
|
||||
"return": {
|
||||
"type": "ret_t",
|
||||
"desc": "返回RET_OK表示成功,否则表示失败。"
|
||||
}
|
||||
},
|
||||
{
|
||||
"params": [
|
||||
{
|
||||
"type": "const char*",
|
||||
"name": "name",
|
||||
"desc": "函数名(无需加函数前缀)。"
|
||||
},
|
||||
{
|
||||
"type": "fscript_func_t*",
|
||||
"name": "func",
|
||||
"desc": "函数指针。"
|
||||
}
|
||||
],
|
||||
"annotation": {},
|
||||
"desc": "注册全局自定义函数。",
|
||||
"name": "fscript_register_func",
|
||||
"return": {
|
||||
"type": "ret_t",
|
||||
"desc": "返回RET_OK表示成功,否则表示失败。"
|
||||
}
|
||||
},
|
||||
{
|
||||
"params": [],
|
||||
"annotation": {},
|
||||
"desc": "全局释放。",
|
||||
"name": "fscript_global_deinit",
|
||||
"return": {
|
||||
"type": "ret_t",
|
||||
"desc": "返回RET_OK表示成功,否则表示失败。"
|
||||
}
|
||||
}
|
||||
],
|
||||
"events": [],
|
||||
|
Loading…
Reference in New Issue
Block a user