Move ussd-status enum out of common.h

This commit is contained in:
Denis Kenzior 2009-08-17 15:27:04 -05:00
parent 75510e7cd5
commit fe2dc0292c
2 changed files with 9 additions and 9 deletions

View File

@ -127,15 +127,6 @@ enum own_number_service_type {
OWN_NUMBER_SERVICE_TYPE_FAX = 5 OWN_NUMBER_SERVICE_TYPE_FAX = 5
}; };
enum ussd_status {
USSD_STATUS_NOTIFY = 0,
USSD_STATUS_ACTION_REQUIRED = 1,
USSD_STATUS_TERMINATED = 2,
USSD_STATUS_LOCAL_CLIENT_RESPONDED = 3,
USSD_STATUS_NOT_SUPPORTED = 4,
USSD_STATUS_TIMED_OUT = 5,
};
/* 22.030 Section 6.5.2 */ /* 22.030 Section 6.5.2 */
enum ss_control_type { enum ss_control_type {
SS_CONTROL_TYPE_ACTIVATION, SS_CONTROL_TYPE_ACTIVATION,

View File

@ -41,6 +41,15 @@
static GSList *g_drivers = NULL; static GSList *g_drivers = NULL;
enum ussd_status {
USSD_STATUS_NOTIFY = 0,
USSD_STATUS_ACTION_REQUIRED = 1,
USSD_STATUS_TERMINATED = 2,
USSD_STATUS_LOCAL_CLIENT_RESPONDED = 3,
USSD_STATUS_NOT_SUPPORTED = 4,
USSD_STATUS_TIMED_OUT = 5,
};
enum ussd_state { enum ussd_state {
USSD_STATE_IDLE = 0, USSD_STATE_IDLE = 0,
USSD_STATE_ACTIVE = 1, USSD_STATE_ACTIVE = 1,