diff options
author | Aleksander Morgado <aleksander@lanedo.com> | 2012-09-10 18:03:29 +0200 |
---|---|---|
committer | Aleksander Morgado <aleksander@lanedo.com> | 2012-09-14 07:05:23 +0200 |
commit | bddcc2fb07f96c9332b031a7b91bc5ba74b62149 (patch) | |
tree | 8335553b2a790b1c873dcd97686d447cd014a26a /src/mm-iface-modem-messaging.h | |
parent | 584fc77bb361f8485c255bd5ce2bb9c6320efc21 (diff) |
iface-modem-messaging: instead of mem1,mem2,mem3 use just a new default storage
There is no point in specifying a default 'mem1' memory storage, which is used
for reading/listing/deleting, as those are operations that need a specific
'mem1' set each time.
Also, there is no point in specifying separate default 'mem2' and 'mem3' memory
storages, specially because now we allow Sms.Store() to specify a storage.
So, we will now only have a 'default' memory storage, which is applicable for
both 'mem2' and 'mem3' (storing, sending from storage and deleting).
Diffstat (limited to 'src/mm-iface-modem-messaging.h')
-rw-r--r-- | src/mm-iface-modem-messaging.h | 28 |
1 files changed, 12 insertions, 16 deletions
diff --git a/src/mm-iface-modem-messaging.h b/src/mm-iface-modem-messaging.h index 50c4352c..c2b5d859 100644 --- a/src/mm-iface-modem-messaging.h +++ b/src/mm-iface-modem-messaging.h @@ -28,12 +28,10 @@ #define MM_IS_IFACE_MODEM_MESSAGING(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), MM_TYPE_IFACE_MODEM_MESSAGING)) #define MM_IFACE_MODEM_MESSAGING_GET_INTERFACE(obj) (G_TYPE_INSTANCE_GET_INTERFACE ((obj), MM_TYPE_IFACE_MODEM_MESSAGING, MMIfaceModemMessaging)) -#define MM_IFACE_MODEM_MESSAGING_DBUS_SKELETON "iface-modem-messaging-dbus-skeleton" -#define MM_IFACE_MODEM_MESSAGING_SMS_LIST "iface-modem-messaging-sms-list" -#define MM_IFACE_MODEM_MESSAGING_SMS_PDU_MODE "iface-modem-messaging-sms-pdu-mode" -#define MM_IFACE_MODEM_MESSAGING_SMS_MEM1_STORAGE "iface-modem-messaging-sms-mem1-storage" -#define MM_IFACE_MODEM_MESSAGING_SMS_MEM2_STORAGE "iface-modem-messaging-sms-mem2-storage" -#define MM_IFACE_MODEM_MESSAGING_SMS_MEM3_STORAGE "iface-modem-messaging-sms-mem3-storage" +#define MM_IFACE_MODEM_MESSAGING_DBUS_SKELETON "iface-modem-messaging-dbus-skeleton" +#define MM_IFACE_MODEM_MESSAGING_SMS_LIST "iface-modem-messaging-sms-list" +#define MM_IFACE_MODEM_MESSAGING_SMS_PDU_MODE "iface-modem-messaging-sms-pdu-mode" +#define MM_IFACE_MODEM_MESSAGING_SMS_DEFAULT_STORAGE "iface-modem-messaging-sms-default-storage" typedef struct _MMIfaceModemMessaging MMIfaceModemMessaging; @@ -63,16 +61,14 @@ struct _MMIfaceModemMessaging { GArray **mem3, GError **error); - /* Set preferred storages (async) */ - void (* set_preferred_storages) (MMIfaceModemMessaging *self, - MMSmsStorage mem1, - MMSmsStorage mem2, - MMSmsStorage mem3, - GAsyncReadyCallback callback, - gpointer user_data); - gboolean (*set_preferred_storages_finish) (MMIfaceModemMessaging *self, - GAsyncResult *res, - GError **error); + /* Set default storage (async) */ + void (* set_default_storage) (MMIfaceModemMessaging *self, + MMSmsStorage storage, + GAsyncReadyCallback callback, + gpointer user_data); + gboolean (*set_default_storage_finish) (MMIfaceModemMessaging *self, + GAsyncResult *res, + GError **error); /* Setup SMS format (async) */ void (* setup_sms_format) (MMIfaceModemMessaging *self, |