diff options
author | Eric Caruso <ejcaruso@chromium.org> | 2020-06-12 15:16:50 -0700 |
---|---|---|
committer | Aleksander Morgado <aleksander@aleksander.es> | 2020-10-19 20:38:43 +0000 |
commit | 9fca0467801d41598666dd63e9394ed806c5a399 (patch) | |
tree | 40a57dd67ca0001ffd8d2ad4449b9031e614400c /src/mm-base-sim.h | |
parent | 1ed9f7e94e5948f408d1d09ad8c219a594669066 (diff) |
mm-base-sim: add EID D-Bus property
This provides a new D-Bus property on the Sim object that
exposes the EID of the SIM, if available.
Diffstat (limited to 'src/mm-base-sim.h')
-rw-r--r-- | src/mm-base-sim.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/mm-base-sim.h b/src/mm-base-sim.h index 9a290e0b..7e860f56 100644 --- a/src/mm-base-sim.h +++ b/src/mm-base-sim.h @@ -76,6 +76,14 @@ struct _MMBaseSimClass { GAsyncResult *res, GError **error); + /* Load EID (async) */ + void (* load_eid) (MMBaseSim *self, + GAsyncReadyCallback callback, + gpointer user_data); + gchar * (* load_eid_finish) (MMBaseSim *self, + GAsyncResult *res, + GError **error); + /* Load operator identifier (async) */ void (* load_operator_identifier) (MMBaseSim *self, GAsyncReadyCallback callback, |