diff options
author | Akula Susmitha <quic_asusmith@quicinc.com> | 2024-09-19 13:12:39 +0530 |
---|---|---|
committer | Akula Susmitha <quic_asusmith@quicinc.com> | 2024-10-07 16:35:09 +0530 |
commit | f22d099f38f16cf06f5ce4a62cd3e4e1d7bbdee0 (patch) | |
tree | a41167927d5bdf89392809f9e47ffee091f99d5a /libmm-glib/mm-modem-messaging.h | |
parent | a63c3004374414b734b19137dcb4ae26f55b429b (diff) |
api,core,mmcli: Add new 'API' support to set-default-storage for SMS
API support has been added to set default storage for SMS.
Changes were made to get, set the deafult storage value.
Diffstat (limited to 'libmm-glib/mm-modem-messaging.h')
-rw-r--r-- | libmm-glib/mm-modem-messaging.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/libmm-glib/mm-modem-messaging.h b/libmm-glib/mm-modem-messaging.h index aff565be..af615eca 100644 --- a/libmm-glib/mm-modem-messaging.h +++ b/libmm-glib/mm-modem-messaging.h @@ -116,6 +116,19 @@ gboolean mm_modem_messaging_delete_sync (MMModemMessaging *self, GCancellable *cancellable, GError **error); +void mm_modem_messaging_set_default_storage (MMModemMessaging *self, + MMSmsStorage storage, + GCancellable *cancellable, + GAsyncReadyCallback callback, + gpointer user_data); +gboolean mm_modem_messaging_set_default_storage_finish (MMModemMessaging *self, + GAsyncResult *res, + GError **error); +gboolean mm_modem_messaging_set_default_storage_sync (MMModemMessaging *self, + MMSmsStorage storage, + GCancellable *cancellable, + GError **error); + G_END_DECLS #endif /* _MM_MODEM_MESSAGING_H_ */ |