Skip to content

Commit 0ae3d80

Browse files
committed
clearify scope of events
1 parent 4bab106 commit 0ae3d80

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
@@ -6609,16 +6609,25 @@ void dc_event_unref(dc_event_t* event);
66096609
/**
66106610
* The callee accepted an incoming call on another another device using dc_accept_incoming_call().
66116611
* The caller gets the event #DC_EVENT_OUTGOING_CALL_ACCEPTED at the same time.
6612+
*
6613+
* The event is sent unconditionally when the corresponding message is received.
6614+
* UI should only take action in case call UI was opened before, otherwise the event should be ignored.
66126615
*/
66136616
#define DC_EVENT_INCOMING_CALL_ACCEPTED 2560
66146617

66156618
/**
66166619
* A call placed using dc_place_outgoing_call() was accepted by the callee using dc_accept_incoming_call().
6620+
*
6621+
* The event is sent unconditionally when the corresponding message is received.
6622+
* UI should only take action in case call UI was opened before, otherwise the event should be ignored.
66176623
*/
66186624
#define DC_EVENT_OUTGOING_CALL_ACCEPTED 2570
66196625

66206626
/**
66216627
* An incoming or outgoing call was ended using dc_end_call().
6628+
*
6629+
* The event is sent unconditionally when the corresponding message is received.
6630+
* UI should only take action in case call UI was opened before, otherwise the event should be ignored.
66226631
*/
66236632
#define DC_EVENT_CALL_ENDED 2580
66246633

0 commit comments

Comments
 (0)