summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/call-forwarding.c9
-rw-r--r--src/common.h9
2 files changed, 9 insertions, 9 deletions
diff --git a/src/call-forwarding.c b/src/call-forwarding.c
index 90f8579f..85e383be 100644
--- a/src/call-forwarding.c
+++ b/src/call-forwarding.c
@@ -43,6 +43,15 @@
static GSList *g_drivers = NULL;
+enum call_forwarding_type {
+ CALL_FORWARDING_TYPE_UNCONDITIONAL = 0,
+ CALL_FORWARDING_TYPE_BUSY = 1,
+ CALL_FORWARDING_TYPE_NO_REPLY = 2,
+ CALL_FORWARDING_TYPE_NOT_REACHABLE = 3,
+ CALL_FORWARDING_TYPE_ALL = 4,
+ CALL_FORWARDING_TYPE_ALL_CONDITIONAL = 5
+};
+
struct ofono_call_forwarding {
GSList *cf_conditions[4];
int flags;
diff --git a/src/common.h b/src/common.h
index 963c68aa..d5272f0a 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 call_forwarding_type {
- CALL_FORWARDING_TYPE_UNCONDITIONAL = 0,
- CALL_FORWARDING_TYPE_BUSY = 1,
- CALL_FORWARDING_TYPE_NO_REPLY = 2,
- CALL_FORWARDING_TYPE_NOT_REACHABLE = 3,
- CALL_FORWARDING_TYPE_ALL = 4,
- CALL_FORWARDING_TYPE_ALL_CONDITIONAL = 5
-};
-
enum ussd_status {
USSD_STATUS_NOTIFY = 0,
USSD_STATUS_ACTION_REQUIRED = 1,