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
95c781ec
Commit
95c781ec
authored
Aug 30, 2017
by
Ronan
Browse files
feat(c-event-log): in progress
parent
8d114ecd
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
2 deletions
+10
-2
src/c-wrapper/api/c-event-log.cpp
src/c-wrapper/api/c-event-log.cpp
+2
-0
src/c-wrapper/api/c-event-log.h
src/c-wrapper/api/c-event-log.h
+8
-2
No files found.
src/c-wrapper/api/c-event-log.cpp
View file @
95c781ec
...
@@ -20,6 +20,8 @@
...
@@ -20,6 +20,8 @@
#include "c-event-log.h"
#include "c-event-log.h"
#include "event-log/call-event.h"
#include "event-log/conference-participant-event.h"
#include "event-log/message-event.h"
#include "event-log/message-event.h"
// =============================================================================
// =============================================================================
...
...
src/c-wrapper/api/c-event-log.h
View file @
95c781ec
...
@@ -23,7 +23,10 @@
...
@@ -23,7 +23,10 @@
// =============================================================================
// =============================================================================
extern
"C"
{
#ifdef __cplusplus
extern
"C"
{
#endif
LINPHONE_PUBLIC
LinphoneEventLog
*
linphone_event_log_new
();
LINPHONE_PUBLIC
LinphoneEventLog
*
linphone_event_log_new
();
LINPHONE_PUBLIC
LinphoneEventLogType
linphone_event_log_get_type
(
const
LinphoneEventLog
*
event_log
);
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
...
@@ -47,6 +50,9 @@ LINPHONE_PUBLIC const LinphoneAddress *linphone_conference_participant_event_get
LINPHONE_PUBLIC
LinphoneMessageEvent
*
linphone_message_event_new
(
LinphoneMessage
*
message
);
LINPHONE_PUBLIC
LinphoneMessageEvent
*
linphone_message_event_new
(
LinphoneMessage
*
message
);
LINPHONE_PUBLIC
LinphoneMessage
*
linphone_message_event_get_message
(
const
LinphoneMessageEvent
*
message_event
);
LINPHONE_PUBLIC
LinphoneMessage
*
linphone_message_event_get_message
(
const
LinphoneMessageEvent
*
message_event
);
}
#ifdef __cplusplus
}
#endif
#endif // ifndef _C_EVENT_LOG_H_
#endif // ifndef _C_EVENT_LOG_H_
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