NIM PC Cross Platform SDK
|
插件接入 接口头文件 More...
#include "nim_plugin_in_def.h"
Go to the source code of this file.
Functions | |
NIM_SDK_DLL_API void | nim_plugin_chatroom_request_enter_async (int64_t room_id, const char *json_extension, nim_plugin_chatroom_request_enter_cb_func cb, const void *user_data) |
NIM_SDK_DLL_API void | nim_plugin_qchat_request_link_address_async (uint32_t ip_version, const char *json_extension, nim_plugin_qchat_request_link_address_cb_func cb, const void *user_data) |
插件接入 接口头文件
void nim_plugin_chatroom_request_enter_async | ( | int64_t | room_id, |
const char * | json_extension, | ||
nim_plugin_chatroom_request_enter_cb_func | cb, | ||
const void * | user_data | ||
) |
异步获取进入聊天室的信息
[in] | room_id | 聊天室ID |
[in] | json_extension | json扩展参数(备用,目前不需要) |
[in] | cb | 回调函数, 定义见nim_plugin_in_def.h |
[in] | user_data | APP的自定义用户数据,SDK只负责传回给回调函数cb,不做任何处理! |
void nim_plugin_qchat_request_link_address_async | ( | uint32_t | ip_version, |
const char * | json_extension, | ||
nim_plugin_qchat_request_link_address_cb_func | cb, | ||
const void * | user_data | ||
) |
异步获取圈组link地址
[in] | ip_version | ip协议, 0:ipv4, 1:ipv6, 2:all |
[in] | json_extension | json扩展参数(备用,目前不需要) |
[in] | cb | 回调函数, 定义见nim_plugin_in_def.h |
[in] | user_data | APP的自定义用户数据,SDK只负责传回给回调函数cb,不做任何处理! |