diff options
author | Riccardo Vangelisti <riccardo.vangelisti@sadel.it> | 2015-04-27 11:41:59 +0200 |
---|---|---|
committer | Aleksander Morgado <aleksander@aleksander.es> | 2015-08-02 10:39:12 +0200 |
commit | c3bec1537b96b3b3071c2de787126ba11479ed88 (patch) | |
tree | ef976c104cc2d071cef97f7783fbf65829618f3b /cli/mmcli-common.h | |
parent | 0bf4ad6b66b1ea7626df28dc2417686b9e2d03f7 (diff) |
mmcli: added Modem.Voice and Call support
Diffstat (limited to 'cli/mmcli-common.h')
-rw-r--r-- | cli/mmcli-common.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/cli/mmcli-common.h b/cli/mmcli-common.h index 615f5218..2b807b04 100644 --- a/cli/mmcli-common.h +++ b/cli/mmcli-common.h @@ -79,6 +79,20 @@ MMSms *mmcli_get_sms_sync (GDBusConnection *connection, MMManager **manager, MMObject **object); +void mmcli_get_call (GDBusConnection *connection, + const gchar *path_or_index, + GCancellable *cancellable, + GAsyncReadyCallback callback, + gpointer user_data); +MMCall *mmcli_get_call_finish (GAsyncResult *res, + MMManager **manager, + MMObject **object); +MMCall *mmcli_get_call_sync (GDBusConnection *connection, + const gchar *path_or_index, + MMManager **manager, + MMObject **object); + + const gchar *mmcli_get_state_reason_string (MMModemStateChangeReason reason); GOptionGroup *mmcli_get_common_option_group (void); @@ -86,6 +100,7 @@ const gchar *mmcli_get_common_modem_string (void); const gchar *mmcli_get_common_bearer_string (void); const gchar *mmcli_get_common_sim_string (void); const gchar *mmcli_get_common_sms_string (void); +const gchar *mmcli_get_common_call_string (void); gchar *mmcli_prefix_newlines (const gchar *prefix, const gchar *str); |