diff options
author | Aleksander Morgado <aleksander@lanedo.com> | 2011-12-26 18:50:16 +0100 |
---|---|---|
committer | Aleksander Morgado <aleksander@lanedo.com> | 2012-03-15 14:14:37 +0100 |
commit | 9d7e3de4cd7d607dc797b8b6adf93eb75a018b6e (patch) | |
tree | 762a58bcb685515756c1787fd72593eca83c9bad /libmm-glib/mm-modem-simple.h | |
parent | a142a209eca617cd3cf4edc6436408e1e9c9f878 (diff) |
api: MMModemBand is now an enum, not flags
We don't want to handle bands as flags, in order to avoid the need of 64-bits
for the enum. This change implies that setting allowed bands will be done by
giving an array of uint32 values, signature "au".
Diffstat (limited to 'libmm-glib/mm-modem-simple.h')
-rw-r--r-- | libmm-glib/mm-modem-simple.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libmm-glib/mm-modem-simple.h b/libmm-glib/mm-modem-simple.h index 451afdc7..95306ab7 100644 --- a/libmm-glib/mm-modem-simple.h +++ b/libmm-glib/mm-modem-simple.h @@ -40,7 +40,7 @@ gchar *mm_modem_simple_dup_path (MMModemSimple *self); #define MM_SIMPLE_PROPERTY_PIN "pin" /* string */ #define MM_SIMPLE_PROPERTY_OPERATOR_ID "operator-id" /* string */ -#define MM_SIMPLE_PROPERTY_ALLOWED_BANDS "allowed-bands" /* MMModemBand */ +#define MM_SIMPLE_PROPERTY_ALLOWED_BANDS "allowed-bands" /* GArray of MMModemBand */ #define MM_SIMPLE_PROPERTY_ALLOWED_MODES "allowed-modes" /* MMModemMode */ #define MM_SIMPLE_PROPERTY_PREFERRED_MODE "preferred-mode" /* MMModemMode */ #define MM_SIMPLE_PROPERTY_APN "apn" /* string */ |