Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
liblinphone
Commits
bd6add29
Commit
bd6add29
authored
Jan 11, 2016
by
Ghislain MARY
Browse files
Fix missing symbol exports on Windows.
parent
734fe2f7
Changes
1
Hide whitespace changes
Inline
Side-by-side
coreapi/conference.h
View file @
bd6add29
...
...
@@ -45,7 +45,7 @@ void linphone_conference_free(LinphoneConference *obj);
int
linphone_conference_add_participant
(
LinphoneConference
*
obj
,
LinphoneCall
*
call
);
int
linphone_conference_remove_participant_with_call
(
LinphoneConference
*
obj
,
LinphoneCall
*
call
);
int
linphone_conference_remove_participant
(
LinphoneConference
*
obj
,
const
LinphoneAddress
*
uri
);
LINPHONE_PUBLIC
int
linphone_conference_remove_participant
(
LinphoneConference
*
obj
,
const
LinphoneAddress
*
uri
);
int
linphone_conference_terminate
(
LinphoneConference
*
obj
);
int
linphone_conference_enter
(
LinphoneConference
*
obj
);
...
...
@@ -57,8 +57,8 @@ int linphone_conference_mute_microphone(LinphoneConference *obj, bool_t val);
bool_t
linphone_conference_microphone_is_muted
(
const
LinphoneConference
*
obj
);
float
linphone_conference_get_input_volume
(
const
LinphoneConference
*
obj
);
int
linphone_conference_get_participant_count
(
const
LinphoneConference
*
obj
);
MSList
*
linphone_conference_get_participants
(
const
LinphoneConference
*
obj
);
LINPHONE_PUBLIC
int
linphone_conference_get_participant_count
(
const
LinphoneConference
*
obj
);
LINPHONE_PUBLIC
MSList
*
linphone_conference_get_participants
(
const
LinphoneConference
*
obj
);
int
linphone_conference_start_recording
(
LinphoneConference
*
obj
,
const
char
*
path
);
int
linphone_conference_stop_recording
(
LinphoneConference
*
obj
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment