Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
savoirfairelinux
jami-daemon
Commits
e0d29f2f
Commit
e0d29f2f
authored
Mar 02, 2009
by
Julien Bonjean
Browse files
Added call type to call_t to differenciate call, history and contact entries
parent
162bd2e2
Changes
1
Hide whitespace changes
Inline
Side-by-side
sflphone-gtk/src/calllist.h
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 */
...
...
Write
Preview
Supports
Markdown
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