blob: 6bb6ed18e5944400434e3e91d0d791553af34d65 [file] [log] [blame]
b.liu4e243dc2023-11-27 11:20:00 +08001#include "lynq_qser_sim.h"
2#include "mbtk_type.h"
b.liu5fa9e772023-11-23 18:00:55 +08003
4int qser_sim_client_init(sim_client_handle_type *ph_sim)
5{
6 UNUSED(ph_sim);
7
8 return 0;
9}
10
11int qser_sim_getimsi(sim_client_handle_type h_sim, QSER_SIM_APP_ID_INFO_T *pt_info,char *imsi,size_t imsiLen)
12{
13 UNUSED(h_sim);
14 UNUSED(pt_info);
15 UNUSED(imsi);
16 UNUSED(imsiLen);
17
18 return 0;
19}
20
21int qser_sim_geticcid(sim_client_handle_type h_sim,QSER_SIM_SLOT_ID_TYPE_T simId,char *iccid, size_t iccidLen)
22{
23 UNUSED(h_sim);
24 UNUSED(simId);
25 UNUSED(iccid);
26 UNUSED(iccidLen);
27
28 return 0;
29}
30
31int qser_sim_getphonenumber(sim_client_handle_type h_sim,QSER_SIM_APP_ID_INFO_T *pt_info, char*phone_num, size_t phoneLen)
32{
33 UNUSED(h_sim);
34 UNUSED(pt_info);
35 UNUSED(phone_num);
36 UNUSED(phoneLen);
37
38 return 0;
39}
40
41int qser_sim_verifypin(sim_client_handle_type h_sim,QSER_SIM_VERIFY_PIN_INFO_T *pt_info)
42{
43 UNUSED(h_sim);
44 UNUSED(pt_info);
45
46 return 0;
47}
48
49int qser_sim_changepin(sim_client_handle_type h_sim,QSER_SIM_CHANGE_PIN_INFO_T *pt_info)
50{
51 UNUSED(h_sim);
52 UNUSED(pt_info);
53
54 return 0;
55}
56
57int qser_sim_unblockpin(sim_client_handle_type h_sim, QSER_SIM_UNBLOCK_PIN_INFO_T *pt_info)
58{
59 UNUSED(h_sim);
60 UNUSED(pt_info);
61
62 return 0;
63}
64
65int qser_sim_enablepin(sim_client_handle_type h_sim, QSER_SIM_ENABLE_PIN_INFO_T *pt_info)
66{
67 UNUSED(h_sim);
68 UNUSED(pt_info);
69
70 return 0;
71}
72
73int qser_sim_disablepin(sim_client_handle_type h_sim, QSER_SIM_DISABLE_PIN_INFO_T *pt_info)
74{
75 UNUSED(h_sim);
76 UNUSED(pt_info);
77
78 return 0;
79}
80
81int qser_sim_getcardstatus(sim_client_handle_type h_sim,QSER_SIM_SLOT_ID_TYPE_T simId,QSER_SIM_CARD_STATUS_INFO_T *pt_info)
82{
83 UNUSED(h_sim);
84 UNUSED(simId);
85 UNUSED(pt_info);
86
87 return 0;
88}
89
90int qser_sim_client_deinit(sim_client_handle_type h_sim)
91{
92 UNUSED(h_sim);
93
94 return 0;
95}
96