| |
| int qser_sim_client_init(sim_client_handle_type *ph_sim) |
| { |
| UNUSED(ph_sim); |
| |
| return 0; |
| } |
| |
| int qser_sim_getimsi(sim_client_handle_type h_sim, QSER_SIM_APP_ID_INFO_T *pt_info,char *imsi,size_t imsiLen) |
| { |
| UNUSED(h_sim); |
| UNUSED(pt_info); |
| UNUSED(imsi); |
| UNUSED(imsiLen); |
| |
| return 0; |
| } |
| |
| int qser_sim_geticcid(sim_client_handle_type h_sim,QSER_SIM_SLOT_ID_TYPE_T simId,char *iccid, size_t iccidLen) |
| { |
| UNUSED(h_sim); |
| UNUSED(simId); |
| UNUSED(iccid); |
| UNUSED(iccidLen); |
| |
| return 0; |
| } |
| |
| int qser_sim_getphonenumber(sim_client_handle_type h_sim,QSER_SIM_APP_ID_INFO_T *pt_info, char*phone_num, size_t phoneLen) |
| { |
| UNUSED(h_sim); |
| UNUSED(pt_info); |
| UNUSED(phone_num); |
| UNUSED(phoneLen); |
| |
| return 0; |
| } |
| |
| int qser_sim_verifypin(sim_client_handle_type h_sim,QSER_SIM_VERIFY_PIN_INFO_T *pt_info) |
| { |
| UNUSED(h_sim); |
| UNUSED(pt_info); |
| |
| return 0; |
| } |
| |
| int qser_sim_changepin(sim_client_handle_type h_sim,QSER_SIM_CHANGE_PIN_INFO_T *pt_info) |
| { |
| UNUSED(h_sim); |
| UNUSED(pt_info); |
| |
| return 0; |
| } |
| |
| int qser_sim_unblockpin(sim_client_handle_type h_sim, QSER_SIM_UNBLOCK_PIN_INFO_T *pt_info) |
| { |
| UNUSED(h_sim); |
| UNUSED(pt_info); |
| |
| return 0; |
| } |
| |
| int qser_sim_enablepin(sim_client_handle_type h_sim, QSER_SIM_ENABLE_PIN_INFO_T *pt_info) |
| { |
| UNUSED(h_sim); |
| UNUSED(pt_info); |
| |
| return 0; |
| } |
| |
| int qser_sim_disablepin(sim_client_handle_type h_sim, QSER_SIM_DISABLE_PIN_INFO_T *pt_info) |
| { |
| UNUSED(h_sim); |
| UNUSED(pt_info); |
| |
| return 0; |
| } |
| |
| 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) |
| { |
| UNUSED(h_sim); |
| UNUSED(simId); |
| UNUSED(pt_info); |
| |
| return 0; |
| } |
| |
| int qser_sim_client_deinit(sim_client_handle_type h_sim) |
| { |
| UNUSED(h_sim); |
| |
| return 0; |
| } |
| |