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