feat(c-types): add conference event interface

This commit is contained in:
Ronan Abhamon 2017-08-29 13:35:11 +02:00
parent 698a0d520f
commit 9467d6819f

View file

@ -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.
// -----------------------------------------------------------------------------