Skip to content

Commit e81d154

Browse files
committed
clearify scope of events
1 parent c65e137 commit e81d154

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

deltachat-ffi/deltachat.h

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6680,16 +6680,25 @@ void dc_event_unref(dc_event_t* event);
66806680
/**
66816681
* The callee accepted an incoming call on another another device using dc_accept_incoming_call().
66826682
* The caller gets the event #DC_EVENT_OUTGOING_CALL_ACCEPTED at the same time.
6683+
*
6684+
* The event is sent unconditionally when the corresponding message is received.
6685+
* UI should only take action in case call UI was opened before, otherwise the event should be ignored.
66836686
*/
66846687
#define DC_EVENT_INCOMING_CALL_ACCEPTED 2560
66856688

66866689
/**
66876690
* A call placed using dc_place_outgoing_call() was accepted by the callee using dc_accept_incoming_call().
6691+
*
6692+
* The event is sent unconditionally when the corresponding message is received.
6693+
* UI should only take action in case call UI was opened before, otherwise the event should be ignored.
66886694
*/
66896695
#define DC_EVENT_OUTGOING_CALL_ACCEPTED 2570
66906696

66916697
/**
66926698
* An incoming or outgoing call was ended using dc_end_call().
6699+
*
6700+
* The event is sent unconditionally when the corresponding message is received.
6701+
* UI should only take action in case call UI was opened before, otherwise the event should be ignored.
66936702
*/
66946703
#define DC_EVENT_CALL_ENDED 2580
66956704

0 commit comments

Comments
 (0)