Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linphone
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
7
Issues
7
List
Board
Labels
Milestones
Merge Requests
10
Merge Requests
10
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
External Wiki
External Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
BC
public
linphone
Commits
cb9add11
Commit
cb9add11
authored
Jan 31, 2011
by
Simon Morlat
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
improve documentation
parent
a532eb55
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
30 additions
and
11 deletions
+30
-11
doxygen.dox
coreapi/help/doxygen.dox
+7
-0
linphonecore.h
coreapi/linphonecore.h
+23
-11
No files found.
coreapi/help/doxygen.dox
View file @
cb9add11
...
...
@@ -34,6 +34,13 @@
/**
* @defgroup call_control Placing and receiving calls
*
* The #LinphoneCall object represents an incoming or outgoing call managed by the #LinphoneCore.
* Outgoing calls can be created using linphone_core_invite() or linphone_core_invite_address(), while incoming calls are notified to the application
* through the LinphoneCoreVTable::call_state_changed callback.
*
* See the basic call \ref basic_call_tutorials "tutorial".
*
**/
/**
...
...
coreapi/linphonecore.h
View file @
cb9add11
...
...
@@ -185,6 +185,7 @@ void linphone_call_params_destroy(LinphoneCallParams *cp);
/**
* Enum describing failure reasons.
* @ingroup initializing
**/
enum
_LinphoneReason
{
LinphoneReasonNone
,
...
...
@@ -203,8 +204,13 @@ const char *linphone_reason_to_string(LinphoneReason err);
struct
_LinphoneCall
;
typedef
struct
_LinphoneCall
LinphoneCall
;
/**
* LinphoneCallState enum represents the different state a call can reach into.
* The application is notified of state changes through the LinphoneCoreVTable::call_state_changed callback.
* @ingroup call_control
**/
typedef
enum
_LinphoneCallState
{
LinphoneCallIdle
,
LinphoneCallIdle
,
/**<Initial call state */
LinphoneCallIncomingReceived
,
/**<This is a new incoming call */
LinphoneCallOutgoingInit
,
/**<An outgoing call is started */
LinphoneCallOutgoingProgress
,
/**<An outgoing call is in progress */
...
...
@@ -302,11 +308,11 @@ typedef struct _LinphoneProxyConfig LinphoneProxyConfig;
* LinphoneRegistrationState describes proxy registration states.
**/
typedef
enum
_LinphoneRegistrationState
{
LinphoneRegistrationNone
,
LinphoneRegistrationProgress
,
LinphoneRegistrationOk
,
LinphoneRegistrationCleared
,
LinphoneRegistrationFailed
LinphoneRegistrationNone
,
/**<Initial state for registrations */
LinphoneRegistrationProgress
,
/**<Registration is in progress */
LinphoneRegistrationOk
,
/**< Registration is successful */
LinphoneRegistrationCleared
,
/**< Unregistration succeeded */
LinphoneRegistrationFailed
/**<Registration failed */
}
LinphoneRegistrationState
;
/**
...
...
@@ -485,6 +491,17 @@ void * linphone_chat_room_get_user_data(LinphoneChatRoom *cr);
/**
* @}
*/
/**
* @addtogroup initializing
* @{
**/
/**
* LinphoneGlobalState describes the global state of the LinphoneCore object.
* It is notified via the LinphoneCoreVTable::global_state_changed
**/
typedef
enum
_LinphoneGlobalState
{
LinphoneGlobalOff
,
LinphoneGlobalStartup
,
...
...
@@ -494,11 +511,6 @@ typedef enum _LinphoneGlobalState{
const
char
*
linphone_global_state_to_string
(
LinphoneGlobalState
gs
);
/**
* @addtogroup initializing
* @{
**/
/**Call state notification callback prototype*/
typedef
void
(
*
LinphoneGlobalStateCb
)(
struct
_LinphoneCore
*
lc
,
LinphoneGlobalState
gstate
,
const
char
*
message
);
...
...
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