mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-24 22:58:13 +00:00
feat(enums): add doc on L_ENUM_VALUES_CALL_SESSION_STATE + escape single quote (make a unreadable build error otherwise)
This commit is contained in:
parent
9092559053
commit
5139e2b1cd
1 changed files with 21 additions and 21 deletions
|
|
@ -23,27 +23,27 @@
|
|||
// =============================================================================
|
||||
|
||||
#define L_ENUM_VALUES_CALL_SESSION_STATE(F) \
|
||||
F(Idle) \
|
||||
F(IncomingReceived) \
|
||||
F(OutgoingInit) \
|
||||
F(OutgoingProgress) \
|
||||
F(OutgoingRinging) \
|
||||
F(OutgoingEarlyMedia) \
|
||||
F(Connected) \
|
||||
F(StreamsRunning) \
|
||||
F(Pausing) \
|
||||
F(Paused) \
|
||||
F(Resuming) \
|
||||
F(Referred) \
|
||||
F(Error) \
|
||||
F(End) \
|
||||
F(PausedByRemote) \
|
||||
F(UpdatedByRemote) \
|
||||
F(IncomingEarlyMedia) \
|
||||
F(Updating) \
|
||||
F(Released) \
|
||||
F(EarlyUpdatedByRemote) \
|
||||
F(EarlyUpdating)
|
||||
F(Idle /**< Idle */) \
|
||||
F(IncomingReceived /**< Incoming call received */) \
|
||||
F(OutgoingInit /**< Outgoing call initialized */) \
|
||||
F(OutgoingProgress /**< Outgoing call in progress */) \
|
||||
F(OutgoingRinging /**< Outgoing call ringing */) \
|
||||
F(OutgoingEarlyMedia /**< Outgoing call early media */) \
|
||||
F(Connected /**< Connected */) \
|
||||
F(StreamsRunning /**< Streams running */) \
|
||||
F(Pausing /**< Pausing */) \
|
||||
F(Paused /**< Paused */) \
|
||||
F(Resuming /**< Resuming */) \
|
||||
F(Referred /**< Referred */) \
|
||||
F(Error /**< Error */) \
|
||||
F(End /**< Call end */) \
|
||||
F(PausedByRemote /**< Paused by remote */) \
|
||||
F(UpdatedByRemote /**< The call's parameters are updated used for example when video is asked by remote */) \
|
||||
F(IncomingEarlyMedia /**< We are proposing early media to an incoming call */) \
|
||||
F(Updating /**< We have initiated a call update */) \
|
||||
F(Released /**< The call object is now released */) \
|
||||
F(EarlyUpdatedByRemote /**< The call is updated by remote while not yet answered (SIP UPDATE in early dialog received) */) \
|
||||
F(EarlyUpdating /**< We are updating the call while not yet answered (SIP UPDATE in early dialog sent) */)
|
||||
|
||||
// =============================================================================
|
||||
// DEPRECATED
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue