aboutsummaryrefslogtreecommitdiff
path: root/src/mm-sim.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mm-sim.h')
-rw-r--r--src/mm-sim.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/mm-sim.h b/src/mm-sim.h
index 6557fd5b..a01e6561 100644
--- a/src/mm-sim.h
+++ b/src/mm-sim.h
@@ -82,6 +82,26 @@ struct _MMSimClass {
GAsyncResult *res,
GError **error);
+ /* Change PIN (async) */
+ void (* change_pin) (MMSim *self,
+ const gchar *old_pin,
+ const gchar *new_pin,
+ GAsyncReadyCallback callback,
+ gpointer user_data);
+ gboolean (* change_pin_finish) (MMSim *self,
+ GAsyncResult *res,
+ GError **error);
+
+ /* Enable PIN (async) */
+ void (* enable_pin) (MMSim *self,
+ const gchar *pin,
+ gboolean enabled,
+ GAsyncReadyCallback callback,
+ gpointer user_data);
+ gboolean (* enable_pin_finish) (MMSim *self,
+ GAsyncResult *res,
+ GError **error);
+
/* Send PIN (async) */
void (* send_pin) (MMSim *self,
const gchar *pin,