Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
jami-daemon
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
savoirfairelinux
jami-daemon
Commits
e0d29f2f
Commit
e0d29f2f
authored
16 years ago
by
Julien Bonjean
Browse files
Options
Downloads
Patches
Plain Diff
Added call type to call_t to differenciate call, history and contact entries
parent
162bd2e2
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
sflphone-gtk/src/calllist.h
+14
-1
14 additions, 1 deletion
sflphone-gtk/src/calllist.h
with
14 additions
and
1 deletion
sflphone-gtk/src/calllist.h
+
14
−
1
View file @
e0d29f2f
...
...
@@ -64,16 +64,29 @@ typedef enum
MISSED
}
history_state_t
;
/**
* @enum call_type
* This enum have all types of call
*/
typedef
enum
{
CALL
,
HISTORY
,
CONTACT
}
call_type_t
;
/** @struct call_t
* @brief Call information.
* This struct holds information about a call.
*/
typedef
struct
{
/** Type of call entry */
call_type_t
call_type
;
/** Unique identifier of the call */
gchar
*
callID
;
/** The account used to place/receive the call */
gchar
*
accountID
;
/** The information about the calling person. See call_get_name() and call_get_number()
/** The information about the calling person. See call_get_name() and call_get_number()
* on how to get the name and number separately. */
gchar
*
from
;
/** The number we are calling. Only used when dialing out */
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment