diff options
author | Aleksander Morgado <aleksander@lanedo.com> | 2012-01-12 17:10:18 +0100 |
---|---|---|
committer | Aleksander Morgado <aleksander@lanedo.com> | 2012-03-15 14:14:50 +0100 |
commit | 263f106b33825700c7cf1ee1ff4994e9b016e68f (patch) | |
tree | 3d4fec395ee687558d7be357068184a1af4ee261 /libmm-common/mm-common-simple-properties.h | |
parent | 9324c9cbb7e6d1a8a3087e1f32a39f80a9cd0ddb (diff) |
libmm-common: include CDMA-specific items in the simple properties
Diffstat (limited to 'libmm-common/mm-common-simple-properties.h')
-rw-r--r-- | libmm-common/mm-common-simple-properties.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/libmm-common/mm-common-simple-properties.h b/libmm-common/mm-common-simple-properties.h index dbfdd858..dba25593 100644 --- a/libmm-common/mm-common-simple-properties.h +++ b/libmm-common/mm-common-simple-properties.h @@ -37,6 +37,11 @@ G_BEGIN_DECLS #define MM_COMMON_SIMPLE_PROPERTY_3GPP_OPERATOR_CODE "m3gpp-operator-code" #define MM_COMMON_SIMPLE_PROPERTY_3GPP_OPERATOR_NAME "m3gpp-operator-name" +#define MM_COMMON_SIMPLE_PROPERTY_CDMA_CDMA1X_REGISTRATION_STATE "cdma-cdma1x-registration-state" +#define MM_COMMON_SIMPLE_PROPERTY_CDMA_EVDO_REGISTRATION_STATE "cdma-evdo-registration-state" +#define MM_COMMON_SIMPLE_PROPERTY_CDMA_SID "cdma-sid" +#define MM_COMMON_SIMPLE_PROPERTY_CDMA_NID "cdma-nid" + typedef struct _MMCommonSimpleProperties MMCommonSimpleProperties; typedef struct _MMCommonSimplePropertiesClass MMCommonSimplePropertiesClass; typedef struct _MMCommonSimplePropertiesPrivate MMCommonSimplePropertiesPrivate; @@ -64,10 +69,16 @@ void mm_common_simple_properties_get_bands const MMModemBand **bands, guint *n_bands); MMModemAccessTechnology mm_common_simple_properties_get_access_technologies (MMCommonSimpleProperties *self); + MMModem3gppRegistrationState mm_common_simple_properties_get_3gpp_registration_state (MMCommonSimpleProperties *self); const gchar *mm_common_simple_properties_get_3gpp_operator_code (MMCommonSimpleProperties *self); const gchar *mm_common_simple_properties_get_3gpp_operator_name (MMCommonSimpleProperties *self); +MMModemCdmaRegistrationState mm_common_simple_properties_get_cdma_cdma1x_registration_state (MMCommonSimpleProperties *self); +MMModemCdmaRegistrationState mm_common_simple_properties_get_cdma_evdo_registration_state (MMCommonSimpleProperties *self); +guint mm_common_simple_properties_get_cdma_sid (MMCommonSimpleProperties *self); +guint mm_common_simple_properties_get_cdma_nid (MMCommonSimpleProperties *self); + GVariant *mm_common_simple_properties_get_dictionary (MMCommonSimpleProperties *self); G_END_DECLS |