更新時間:2019-11-20
接口描述
該接口創(chuàng)建即時會議。
注意事項
無。
方法定義
int clm_createMeetingWithParticipants(plugin_create_meeting_with_participants_param *data) |
參數(shù)描述
參數(shù) |
是否必須 |
類型 |
描述 |
---|---|---|---|
callbackFunc |
是 |
函數(shù) |
接口結(jié)果回調(diào)函數(shù)。 |
meetingSubject |
是 |
char* |
會議主題。 |
meetingType |
是 |
unsigned int |
會議類型。 |
needPassword |
是 |
unsigned int |
是否需要會議接入碼。
|
memberInfo |
否 |
struct meeting_participants_param |
與會者信息列表結(jié)構(gòu)體。 |
參數(shù) |
類型 |
描述 |
---|---|---|
member |
struct meeting_participants |
與會者信息結(jié)構(gòu)體。 |
count |
unsigned int |
與會者個數(shù)。 |
參數(shù) |
類型 |
描述 |
---|---|---|
name |
char* |
與會者名稱。 |
number |
char* |
與會者號碼。 |
返回值
類型 |
描述 |
---|---|
int |
成功返回0,其他值表示失敗。 |
代碼示例
int demoCreatMeetingWithParticipants::clickCreatMeetingWithParticipants() { struct plugin_create_meeting_with_participants_param data; memset(&data, 0, sizeof(plugin_create_meeting_with_participants_param)); string meetingSubject= "subject"; data.meetingSubject = (char*)meetingSubject.c_str(); data.meetingType = CONF_MEDIATYPE_FLAG_VIDEO_DATA; data.needPassword = 0; meeting_participants participants; string name = "name"; participants.name = (char*)name.c_str(); string number = "number"; participants.number = (char*)number.c_str(); data.memberInfo.count = 1; data.memberInfo.member = participants; //設(shè)置回調(diào)接口 data.callbackFunc = createMeetingWithParticipantsCallBack; int ret = clm_createMeetingWithParticipants(&data); return ret; } |