summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDenis Kenzior <denkenz@gmail.com>2009-08-17 15:27:04 -0500
committerDenis Kenzior <denkenz@gmail.com>2009-08-17 15:27:04 -0500
commitfe2dc0292cb842fe463a63c374d3b40356159953 (patch)
treefac700864e70103420cb58eebc9acb0db8a7afb4
parent75510e7cd5bde747ac45c448d0e06661d8cd7e40 (diff)
downloadofono-fe2dc0292cb842fe463a63c374d3b40356159953.tar.bz2
Move ussd-status enum out of common.h
-rw-r--r--src/common.h9
-rw-r--r--src/ussd.c9
2 files changed, 9 insertions, 9 deletions
diff --git a/src/common.h b/src/common.h
index d5272f0a..eeaa951f 100644
--- a/src/common.h
+++ b/src/common.h
@@ -127,15 +127,6 @@ enum own_number_service_type {
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 */
enum ss_control_type {
SS_CONTROL_TYPE_ACTIVATION,
diff --git a/src/ussd.c b/src/ussd.c
index d4f2f547..3d7ac4a9 100644
--- a/src/ussd.c
+++ b/src/ussd.c
@@ -41,6 +41,15 @@
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 {
USSD_STATE_IDLE = 0,
USSD_STATE_ACTIVE = 1,