iface-modem: load EquipmentIdentifier' and DeviceIdentifier' during init

This commit is contained in:
Aleksander Morgado
2011-11-22 17:40:52 +01:00
parent 7a9b0d9fac
commit 9852433095
2 changed files with 50 additions and 0 deletions

View File

@@ -86,6 +86,22 @@ struct _MMIfaceModem {
gchar * (*load_revision_finish) (MMIfaceModem *self,
GAsyncResult *res,
GError **error);
/* Loading of the EquipmentIdentifier property */
void (*load_equipment_identifier) (MMIfaceModem *self,
GAsyncReadyCallback callback,
gpointer user_data);
gchar * (*load_equipment_identifier_finish) (MMIfaceModem *self,
GAsyncResult *res,
GError **error);
/* Loading of the DeviceIdentifier property */
void (*load_device_identifier) (MMIfaceModem *self,
GAsyncReadyCallback callback,
gpointer user_data);
gchar * (*load_device_identifier_finish) (MMIfaceModem *self,
GAsyncResult *res,
GError **error);
};
GType mm_iface_modem_get_type (void);