diff options
author | Aleksander Morgado <aleksander@lanedo.com> | 2012-01-23 15:20:39 +0100 |
---|---|---|
committer | Aleksander Morgado <aleksander@lanedo.com> | 2012-03-15 14:14:57 +0100 |
commit | 3e866b2330b224be47e7d19b2e4dbac483fdb946 (patch) | |
tree | 85e0d0a372b37021c6e1f2c945fa5ec771216f97 | |
parent | 81d130b2bb92eeb7736b04e325fe739cea87c6f0 (diff) |
api,header: new `MM_MODEM_3GPP_USSD_SESSION_STATE_UNKNOWN'
To be set when USSD is not enabled.
-rw-r--r-- | include/ModemManager-enums.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/include/ModemManager-enums.h b/include/ModemManager-enums.h index 4ad2e9b9..77deff98 100644 --- a/include/ModemManager-enums.h +++ b/include/ModemManager-enums.h @@ -466,6 +466,7 @@ typedef enum { /*< underscore_name=mm_modem_3gpp_network_availability >*/ /** * MMModem3gppUssdSessionState: + * @MM_MODEM_3GPP_USSD_SESSION_STATE_UNKNOWN: Unknown state. * @MM_MODEM_3GPP_USSD_SESSION_STATE_IDLE: No active session. * @MM_MODEM_3GPP_USSD_SESSION_STATE_ACTIVE: A session is active and the mobile is waiting for a response. * @MM_MODEM_3GPP_USSD_SESSION_STATE_USER_RESPONSE: The network is waiting for the client's response. @@ -473,9 +474,10 @@ typedef enum { /*< underscore_name=mm_modem_3gpp_network_availability >*/ * State of a USSD session. */ typedef enum { /*< underscore_name=mm_modem_3gpp_ussd_session_state >*/ - MM_MODEM_3GPP_USSD_SESSION_STATE_IDLE = 0, - MM_MODEM_3GPP_USSD_SESSION_STATE_ACTIVE = 1, - MM_MODEM_3GPP_USSD_SESSION_STATE_USER_RESPONSE = 2, + MM_MODEM_3GPP_USSD_SESSION_STATE_UNKNOWN = 0, + MM_MODEM_3GPP_USSD_SESSION_STATE_IDLE = 1, + MM_MODEM_3GPP_USSD_SESSION_STATE_ACTIVE = 2, + MM_MODEM_3GPP_USSD_SESSION_STATE_USER_RESPONSE = 3, } MMModem3gppUssdSessionState; #endif /* _MODEMMANAGER_ENUMS_H_ */ |