Move mcc & mnc defines to types.h

This commit is contained in:
Denis Kenzior 2009-08-18 22:28:47 -05:00
parent 99cf14efcf
commit a5617250a1
2 changed files with 4 additions and 4 deletions

View File

@ -26,6 +26,10 @@
extern "C" {
#endif
/* MCC is always three digits. MNC is either two or three digits */
#define OFONO_MAX_MCC_LENGTH 3
#define OFONO_MAX_MNC_LENGTH 3
typedef void (*ofono_destroy_func)(void *data);
/* 27.007 Section 6.2 */

View File

@ -44,10 +44,6 @@ struct ofono_call {
* */
#define OFONO_MAX_OPERATOR_NAME_LENGTH 63
/* MCC is always three digits. MNC is either two or three digits */
#define OFONO_MAX_MCC_LENGTH 3
#define OFONO_MAX_MNC_LENGTH 3
struct ofono_network_operator {
char name[OFONO_MAX_OPERATOR_NAME_LENGTH + 1];
char mcc[OFONO_MAX_MCC_LENGTH + 1];