mirror of
https://gitlab.gnome.org/GNOME/calls.git
synced 2025-01-05 19:15:32 +00:00
call: Document call states
This commit is contained in:
parent
1d20998e9a
commit
09688a1e80
1 changed files with 10 additions and 0 deletions
|
@ -32,6 +32,16 @@ G_BEGIN_DECLS
|
|||
|
||||
G_DECLARE_DERIVABLE_TYPE (CallsCall, calls_call, CALLS, CALL, GObject)
|
||||
|
||||
/**
|
||||
* CallsCallState:
|
||||
* @CALLS_CALL_STATE_UNKNOWN: Call state unknown
|
||||
* @CALLS_CALL_STATE_ACTIVE: Call is active
|
||||
* @CALLS_CALL_STATE_HELD: Call is being held
|
||||
* @CALLS_CALL_STATE_DIALING: Outgoing call being established
|
||||
* @CALLS_CALL_STATE_ALERTING: Remote party is being alerted
|
||||
* @CALLS_CALL_STATE_INCOMING: New incoming call
|
||||
* @CALLS_CALL_STATE_DISCONNECTED: Call was successfully terminated
|
||||
*/
|
||||
typedef enum {
|
||||
CALLS_CALL_STATE_UNKNOWN = 0,
|
||||
CALLS_CALL_STATE_ACTIVE,
|
||||
|
|
Loading…
Reference in a new issue