Move enum to simutil.h
authorDenis Kenzior <denkenz@gmail.com>
Fri, 10 Jul 2009 23:56:44 +0000 (18:56 -0500)
committerDenis Kenzior <denkenz@gmail.com>
Tue, 14 Jul 2009 20:45:04 +0000 (15:45 -0500)
src/sim.c
src/simutil.h

index eff72d0..6960eed 100644 (file)
--- a/src/sim.c
+++ b/src/sim.c
@@ -39,6 +39,7 @@
 #include "util.h"
 #include "smsutil.h"
 #include "sim.h"
+#include "simutil.h"
 
 #define SIM_MANAGER_INTERFACE "org.ofono.SimManager"
 
@@ -254,14 +255,6 @@ static char *network_name_parse(const unsigned char *buffer, int length)
        return NULL;
 }
 
-enum sim_fileids {
-       SIM_EFMSISDN_FILEID = 0x6f40,
-       SIM_EFSPN_FILEID = 0x6f46,
-       SIM_EFPNN_FILEID = 0x6fc5,
-       SIM_EFOPL_FILEID = 0x6fc6,
-       SIM_EFSPDI_FILEID = 0x6fcd,
-};
-
 #define SIM_EFSPN_DC_HOME_PLMN_BIT 0x1
 #define SIM_EFSPN_DC_ROAMING_SPN_BIT 0x2
 
index ebbf1e5..b1c75c1 100644 (file)
  *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
  *
  */
+
+enum sim_fileid {
+       SIM_EFMSISDN_FILEID = 0x6f40,
+       SIM_EFSPN_FILEID = 0x6f46,
+       SIM_EFPNN_FILEID = 0x6fc5,
+       SIM_EFOPL_FILEID = 0x6fc6,
+       SIM_EFSPDI_FILEID = 0x6fcd,
+};
+
 const guint8 *ber_tlv_find_by_tag(const guint8 *pdu, guint8 in_tag,
                                        int in_len, int *out_len);