Add T106 header file.
Change-Id: I139abf126f194dc011d5cdf531722152f90a1e90
diff --git a/mbtk/lynq_lib/src/lynq_network.c b/mbtk/lynq_lib/src/lynq_network.c
new file mode 100755
index 0000000..5212da5
--- /dev/null
+++ b/mbtk/lynq_lib/src/lynq_network.c
@@ -0,0 +1,72 @@
+#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;
+}
\ No newline at end of file