diff options
author | Aleksander Morgado <aleksander@lanedo.com> | 2012-02-08 13:24:40 +0100 |
---|---|---|
committer | Aleksander Morgado <aleksander@lanedo.com> | 2012-03-15 14:15:01 +0100 |
commit | 2021ba80fd1dba6edc47a958aeb9c12e5bdbb141 (patch) | |
tree | 70c40eecc3554f30a8e77d8189243d9edb17299e /cli/mmcli-common.h | |
parent | d80d06cd6e2b8a441dac610ba396fe0b05c8b63e (diff) |
cli: setup to work with SMS objects
Diffstat (limited to 'cli/mmcli-common.h')
-rw-r--r-- | cli/mmcli-common.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/cli/mmcli-common.h b/cli/mmcli-common.h index bdbb5901..5541a719 100644 --- a/cli/mmcli-common.h +++ b/cli/mmcli-common.h @@ -64,11 +64,25 @@ MMSim *mmcli_get_sim_sync (GDBusConnection *connection, MMManager **manager, MMObject **object); +void mmcli_get_sms (GDBusConnection *connection, + const gchar *path_or_index, + GCancellable *cancellable, + GAsyncReadyCallback callback, + gpointer user_data); +MMSms *mmcli_get_sms_finish (GAsyncResult *res, + MMManager **manager, + MMObject **object); +MMSms *mmcli_get_sms_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); 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); #endif /* _MMCLI_COMMON_H_ */ |