diff options
Diffstat (limited to 'src/mm-iface-modem-3gpp.h')
-rw-r--r-- | src/mm-iface-modem-3gpp.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/mm-iface-modem-3gpp.h b/src/mm-iface-modem-3gpp.h index f9a2b084..8962d0d7 100644 --- a/src/mm-iface-modem-3gpp.h +++ b/src/mm-iface-modem-3gpp.h @@ -65,6 +65,26 @@ struct _MMIfaceModem3gpp { gboolean (*setup_ps_registration_finish) (MMIfaceModem3gpp *self, GAsyncResult *res, GError **error); + + /* Run CS registration state check. + * Note that no registration state is returned, implementations should call + * mm_iface_modem_3gpp_update_registration_state(). */ + void (* run_cs_registration_check) (MMIfaceModem3gpp *self, + GAsyncReadyCallback callback, + gpointer user_data); + gboolean (*run_cs_registration_check_finish) (MMIfaceModem3gpp *self, + GAsyncResult *res, + GError **error); + + /* Run PS registration state check. + * Note that no registration state is returned, implementations should call + * mm_iface_modem_3gpp_update_registration_state(). */ + void (* run_ps_registration_check) (MMIfaceModem3gpp *self, + GAsyncReadyCallback callback, + gpointer user_data); + gboolean (*run_ps_registration_check_finish) (MMIfaceModem3gpp *self, + GAsyncResult *res, + GError **error); }; GType mm_iface_modem_3gpp_get_type (void); |