summaryrefslogtreecommitdiffstats
path: root/src/ussd.c
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 /src/ussd.c
parent75510e7cd5bde747ac45c448d0e06661d8cd7e40 (diff)
downloadofono-fe2dc0292cb842fe463a63c374d3b40356159953.tar.bz2
Move ussd-status enum out of common.h
Diffstat (limited to 'src/ussd.c')
-rw-r--r--src/ussd.c9
1 files changed, 9 insertions, 0 deletions
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,