feat(c-event-log): in progress

This commit is contained in:
Ronan Abhamon 2017-08-30 09:55:16 +02:00
parent 8d114ecded
commit 95c781ec5b
2 changed files with 10 additions and 2 deletions

View file

@ -20,6 +20,8 @@
#include "c-event-log.h"
#include "event-log/call-event.h"
#include "event-log/conference-participant-event.h"
#include "event-log/message-event.h"
// =============================================================================

View file

@ -23,7 +23,10 @@
// =============================================================================
extern "C" {
#ifdef __cplusplus
extern "C" {
#endif
LINPHONE_PUBLIC LinphoneEventLog *linphone_event_log_new ();
LINPHONE_PUBLIC LinphoneEventLogType linphone_event_log_get_type (const LinphoneEventLog *event_log);
@ -47,6 +50,9 @@ LINPHONE_PUBLIC const LinphoneAddress *linphone_conference_participant_event_get
LINPHONE_PUBLIC LinphoneMessageEvent *linphone_message_event_new (LinphoneMessage *message);
LINPHONE_PUBLIC LinphoneMessage *linphone_message_event_get_message (const LinphoneMessageEvent *message_event);
}
#ifdef __cplusplus
}
#endif
#endif // ifndef _C_EVENT_LOG_H_