api: include '3gpp' prefix for LAC/CI location, instead of 'gsm'

This commit is contained in:
Aleksander Morgado
2012-01-17 23:42:30 +01:00
parent 182a954205
commit f94d8ce30a
2 changed files with 4 additions and 4 deletions

View File

@@ -300,7 +300,7 @@ typedef enum { /*< underscore_name=mm_modem_sms_state >*/
/**
* MMModemLocationSource:
* @MM_MODEM_LOCATION_SOURCE_NONE: None.
* @MM_MODEM_LOCATION_SOURCE_GSM_LAC_CI: Location Area Code and Cell ID.
* @MM_MODEM_LOCATION_SOURCE_3GPP_LAC_CI: Location Area Code and Cell ID.
* @MM_MODEM_LOCATION_SOURCE_GPS_RAW: GPS location given by predefined keys.
* @MM_MODEM_LOCATION_SOURCE_GPS_NMEA: GPS location given as NMEA traces.
*
@@ -308,7 +308,7 @@ typedef enum { /*< underscore_name=mm_modem_sms_state >*/
*/
typedef enum { /*< underscore_name=mm_modem_location_source >*/
MM_MODEM_LOCATION_SOURCE_NONE = 0,
MM_MODEM_LOCATION_SOURCE_GSM_LAC_CI = 1 << 0,
MM_MODEM_LOCATION_SOURCE_3GPP_LAC_CI = 1 << 0,
MM_MODEM_LOCATION_SOURCE_GPS_RAW = 1 << 1,
MM_MODEM_LOCATION_SOURCE_GPS_NMEA = 1 << 2,
} MMModemLocationSource;