Skip to content
Snippets Groups Projects
Commit e0d29f2f authored by Julien Bonjean's avatar Julien Bonjean
Browse files

Added call type to call_t to differenciate call, history and contact entries

parent 162bd2e2
No related branches found
No related tags found
No related merge requests found
......@@ -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 */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment