diff options
author | Aleksander Morgado <aleksander@aleksander.es> | 2021-03-24 15:17:59 +0100 |
---|---|---|
committer | Aleksander Morgado <aleksander@aleksander.es> | 2021-03-24 15:31:13 +0100 |
commit | 342b7119c3337f1baa4648dac473a7274ca084f0 (patch) | |
tree | 5380b46ced230a971e96ec5d1d7945d659688c13 /cli/mmcli.h | |
parent | 08ed7b75dbf62536df79c98394f3b092d2cd9ccc (diff) |
cli,3gpp-ussd: move actions to a separate source file
All the USSD operations together in a separate file, as they're
managed in a separate 3GPP USSD interface.
Diffstat (limited to 'cli/mmcli.h')
-rw-r--r-- | cli/mmcli.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/cli/mmcli.h b/cli/mmcli.h index 58ff34e1..e3d7bb88 100644 --- a/cli/mmcli.h +++ b/cli/mmcli.h @@ -53,6 +53,14 @@ void mmcli_modem_3gpp_run_asynchronous (GDBusConnection *connection, void mmcli_modem_3gpp_run_synchronous (GDBusConnection *connection); void mmcli_modem_3gpp_shutdown (void); +/* 3GPP USSD group */ +GOptionGroup *mmcli_modem_3gpp_ussd_get_option_group (void); +gboolean mmcli_modem_3gpp_ussd_options_enabled (void); +void mmcli_modem_3gpp_ussd_run_asynchronous (GDBusConnection *connection, + GCancellable *cancellable); +void mmcli_modem_3gpp_ussd_run_synchronous (GDBusConnection *connection); +void mmcli_modem_3gpp_ussd_shutdown (void); + /* CDMA group */ GOptionGroup *mmcli_modem_cdma_get_option_group (void); gboolean mmcli_modem_cdma_options_enabled (void); |