Move enum to simutil.h

This commit is contained in:
Denis Kenzior 2009-07-10 18:59:37 -05:00
parent 05c4ae4793
commit f6aa6e473c
2 changed files with 3 additions and 3 deletions

View File

@ -251,9 +251,6 @@ static char *network_name_parse(const unsigned char *buffer, int length)
return NULL;
}
#define SIM_EFSPN_DC_HOME_PLMN_BIT 0x1
#define SIM_EFSPN_DC_ROAMING_SPN_BIT 0x2
static void sim_spn_read_cb(const struct ofono_error *error,
const unsigned char *sdata, int length, void *data)
{

View File

@ -27,5 +27,8 @@ enum sim_fileid {
SIM_EFSPDI_FILEID = 0x6fcd,
};
#define SIM_EFSPN_DC_HOME_PLMN_BIT 0x1
#define SIM_EFSPN_DC_ROAMING_SPN_BIT 0x2
const guint8 *ber_tlv_find_by_tag(const guint8 *pdu, guint8 in_tag,
int in_len, int *out_len);