diff options
author | Aleksander Morgado <aleksander@lanedo.com> | 2011-12-21 17:34:43 +0100 |
---|---|---|
committer | Aleksander Morgado <aleksander@lanedo.com> | 2012-03-15 14:14:36 +0100 |
commit | 88e8c4835b50c8967e3caa120b7cbc898a7875b7 (patch) | |
tree | de363131797e306af23d125a65372abc95814ff5 /cli/mmcli-common.h | |
parent | 241c29491873d527ac44272cbf4214e955ec5be6 (diff) |
cli: implement SIM related actions
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 a0df66b3..9add4889 100644 --- a/cli/mmcli-common.h +++ b/cli/mmcli-common.h @@ -51,6 +51,19 @@ MMBearer *mmcli_get_bearer_sync (GDBusConnection *connection, MMManager **manager, MMObject **object); +void mmcli_get_sim (GDBusConnection *connection, + const gchar *sim_path, + GCancellable *cancellable, + GAsyncReadyCallback callback, + gpointer user_data); +MMSim *mmcli_get_sim_finish (GAsyncResult *res, + MMManager **manager, + MMObject **object); +MMSim *mmcli_get_sim_sync (GDBusConnection *connection, + const gchar *sim_path, + MMManager **manager, + MMObject **object); + const gchar *mmcli_get_bearer_ip_method_string (MMBearerIpMethod method); const gchar *mmcli_get_state_string (MMModemState state); const gchar *mmcli_get_state_reason_string (MMModemStateChangeReason reason); @@ -61,5 +74,6 @@ const gchar *mmcli_get_3gpp_registration_state_string (MMModem3gppRegistrationSt 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); #endif /* _MMCLI_COMMON_H_ */ |