blob: 5212da5229ce52215fa81634213f4da8f0ae15b6 [file] [log] [blame]
#include "lynq_qser_network.h"
int qser_nw_client_init(nw_client_handle_type *ph_nw)
{
UNUSED(ph_nw);
return 0;
}
int qser_nw_client_deinit(nw_client_handle_type h_nw)
{
UNUSED(h_nw);
return 0;
}
int qser_nw_set_config(nw_client_handle_type h_nw,QSER_NW_CONFIG_INFO_T *pt_info)
{
UNUSED(h_nw);
UNUSED(pt_info);
return 0;
}
int qser_nw_get_operator_name(nw_client_handle_type h_nw, QSER_NW_OPERATOR_NAME_INFO_T *pt_info)
{
UNUSED(h_nw);
UNUSED(pt_info);
return 0;
}
int qser_nw_get_reg_status(nw_client_handle_type h_nw, QSER_NW_REG_STATUS_INFO_T *pt_info)
{
UNUSED(h_nw);
UNUSED(pt_info);
return 0;
}
int qser_nw_get_signal_strength(nw_client_handle_type h_nw,QSER_NW_SIGNAL_STRENGTH_INFO_T *pt_info)
{
UNUSED(h_nw);
UNUSED(pt_info);
return 0;
}
int qser_nw_add_rx_msg_handler (nw_client_handle_type h_nw, QSER_NW_RxMsgHandlerFunc_t handlerPtr, void* contextPtr)
{
UNUSED(h_nw);
UNUSED(handlerPtr);
UNUSED(contextPtr);
return 0;
}
int qser_nw_set_oos_config (nw_client_handle_type h_nw, QSER_NW_OOS_CONFIG_INFO_T *pt_info)
{
UNUSED(h_nw);
UNUSED(pt_info);
return 0;
}
int qser_nw_get_oos_config (nw_client_handle_type h_nw, QSER_NW_OOS_CONFIG_INFO_T *pt_info)
{
UNUSED(h_nw);
UNUSED(pt_info);
return 0;
}