diff options
author | Aleksander Morgado <aleksander@lanedo.com> | 2012-02-03 13:34:03 +0100 |
---|---|---|
committer | Aleksander Morgado <aleksander@lanedo.com> | 2012-03-15 14:15:00 +0100 |
commit | d9f5779bbbbcf0559a5dd0a3a897b5d4241ad186 (patch) | |
tree | 3dfa410ea3669475333171a39ed4ecf1011d8ae8 /src/mm-iface-modem-messaging.h | |
parent | ee13bbe4a3c1e2a95b203787af9d5cbd3a09a567 (diff) |
iface-modem-messaging: allow setting up unsolicited events
Diffstat (limited to 'src/mm-iface-modem-messaging.h')
-rw-r--r-- | src/mm-iface-modem-messaging.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/mm-iface-modem-messaging.h b/src/mm-iface-modem-messaging.h index 8aafccf8..230e7d41 100644 --- a/src/mm-iface-modem-messaging.h +++ b/src/mm-iface-modem-messaging.h @@ -51,6 +51,22 @@ struct _MMIfaceModemMessaging { GAsyncResult *res, GError **error); + /* Asynchronous setting up unsolicited SMS reception events */ + void (*setup_unsolicited_events) (MMIfaceModemMessaging *self, + GAsyncReadyCallback callback, + gpointer user_data); + gboolean (*setup_unsolicited_events_finish) (MMIfaceModemMessaging *self, + GAsyncResult *res, + GError **error); + + /* Asynchronous cleaning up of unsolicited SMS reception events */ + void (*cleanup_unsolicited_events) (MMIfaceModemMessaging *self, + GAsyncReadyCallback callback, + gpointer user_data); + gboolean (*cleanup_unsolicited_events_finish) (MMIfaceModemMessaging *self, + GAsyncResult *res, + GError **error); + /* Load initial SMS parts (async). * Found parts need to be reported with take_part() */ void (* load_initial_sms_parts) (MMIfaceModemMessaging *self, |