mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-21 13:08:08 +00:00
feat(c-types): add conference event interface
This commit is contained in:
parent
698a0d520f
commit
9467d6819f
1 changed files with 12 additions and 0 deletions
|
|
@ -30,6 +30,7 @@
|
|||
extern "C" {
|
||||
#endif
|
||||
|
||||
L_DECLARE_C_STRUCT(ConferenceEvent);
|
||||
L_DECLARE_C_STRUCT(ConferenceParticipantEvent);
|
||||
L_DECLARE_C_STRUCT(EventLog);
|
||||
L_DECLARE_C_STRUCT(Message);
|
||||
|
|
@ -38,6 +39,17 @@ L_DECLARE_C_STRUCT(MessageEvent);
|
|||
// TODO: Remove me in the future.
|
||||
typedef struct SalAddress LinphoneAddress;
|
||||
|
||||
// -----------------------------------------------------------------------------
|
||||
// Conference Event.
|
||||
// -----------------------------------------------------------------------------
|
||||
|
||||
LINPHONE_PUBLIC LinphoneConferenceEvent *conference_event_new (
|
||||
LinphoneEventLogType type,
|
||||
const LinphoneAddress *address
|
||||
);
|
||||
|
||||
LINPHONE_PUBLIC const LinphoneAddress *conference_event_get_address ();
|
||||
|
||||
// -----------------------------------------------------------------------------
|
||||
// Conference Participant Event.
|
||||
// -----------------------------------------------------------------------------
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue