diff --git a/include/types.h b/include/types.h index 76f8fecf..5be40956 100644 --- a/include/types.h +++ b/include/types.h @@ -26,6 +26,19 @@ extern "C" { #endif +/* 27.007 Section 6.2 */ +enum ofono_clir_option { + OFONO_CLIR_OPTION_DEFAULT = 0, + OFONO_CLIR_OPTION_INVOCATION, + OFONO_CLIR_OPTION_SUPPRESSION +}; + +/* 27.007 Section 6.2 */ +enum ofono_cug_option { + OFONO_CUG_OPTION_DEFAULT = 0, + OFONO_CUG_OPTION_INVOCATION = 1, +}; + enum ofono_error_type { OFONO_ERROR_TYPE_NO_ERROR = 0, OFONO_ERROR_TYPE_CME, diff --git a/src/driver.h b/src/driver.h index 8e0325ca..4d33784a 100644 --- a/src/driver.h +++ b/src/driver.h @@ -23,19 +23,6 @@ struct ofono_modem; -/* 27.007 Section 6.2 */ -enum ofono_clir_option { - OFONO_CLIR_OPTION_DEFAULT = 0, - OFONO_CLIR_OPTION_INVOCATION, - OFONO_CLIR_OPTION_SUPPRESSION -}; - -/* 27.007 Section 6.2 */ -enum ofono_cug_option { - OFONO_CUG_OPTION_DEFAULT = 0, - OFONO_CUG_OPTION_INVOCATION = 1, -}; - enum ofono_disconnect_reason { OFONO_DISCONNECT_REASON_UNKNOWN = 0, OFONO_DISCONNECT_REASON_LOCAL_HANGUP,