aboutsummaryrefslogtreecommitdiffstats
path: root/src/sim/sim_int.h
diff options
context:
space:
mode:
authorKirill Zakharenko <earwin@gmail.com>2020-05-01 18:21:58 +0300
committerKirill Zakharenko <earwin@gmail.com>2020-05-01 18:21:58 +0300
commit357ab3abba5a1be0a66f8ae6c6a0460ddb4b7c06 (patch)
treead0979169f0d7911bb503466036f36f1489bc714 /src/sim/sim_int.h
parent459224a99391fa9adf22a45cb6a63d56703aa3a8 (diff)
parentd87d6f177837c848381e362d3880509ba275cac8 (diff)
Merge master into fairwaves/production
Diffstat (limited to 'src/sim/sim_int.h')
-rw-r--r--src/sim/sim_int.h14
1 files changed, 8 insertions, 6 deletions
diff --git a/src/sim/sim_int.h b/src/sim/sim_int.h
index 885011ed..a96a9cd2 100644
--- a/src/sim/sim_int.h
+++ b/src/sim/sim_int.h
@@ -12,8 +12,6 @@ struct osim_decoded_element *
element_alloc_sub(struct osim_decoded_element *ee, const char *name,
enum osim_element_type type, enum osim_element_repr repr);
-extern const struct osim_card_sw ts102221_uicc_sw[0];
-
int default_decode(struct osim_decoded_data *dd,
const struct osim_file_desc *desc,
int len, uint8_t *data);
@@ -26,11 +24,15 @@ add_df_with_ef(struct osim_file_desc *parent,
const struct osim_file_desc *in, int num);
struct osim_file_desc *
-add_adf_with_ef(struct osim_file_desc *parent,
- const uint8_t *adf_name, uint8_t adf_name_len,
- const char *name, const struct osim_file_desc *in,
- int num);
+alloc_adf_with_ef(void *ctx, const uint8_t *adf_name, uint8_t adf_name_len,
+ const char *name, const struct osim_file_desc *in, int num);
extern const struct osim_reader_ops pcsc_reader_ops;
+void osim_app_profile_register(struct osim_card_app_profile *aprof);
+
+struct osim_card_app_profile *osim_aprof_usim(void *ctx);
+struct osim_card_app_profile *osim_aprof_isim(void *ctx);
+struct osim_card_app_profile *osim_aprof_hpsim(void *ctx);
+
#endif