b.liu | e958203 | 2025-04-17 19:18:16 +0800 | [diff] [blame^] | 1 | /****************************************************************************** |
| 2 | *(C) Copyright 2008 Marvell International Ltd. |
| 3 | * All Rights Reserved |
| 4 | ******************************************************************************/ |
| 5 | /*-------------------------------------------------------------------------------------------------------------------- |
| 6 | * ------------------------------------------------------------------------------------------------------------------- |
| 7 | * |
| 8 | * Filename: teldat.h |
| 9 | * |
| 10 | * Description: Telephony Definitions for AT Command for CI_SG_ID_DEV. |
| 11 | * |
| 12 | * History: |
| 13 | * Jan 17, 2008 - Creation of file |
| 14 | * |
| 15 | * Notes: |
| 16 | * |
| 17 | ******************************************************************************/ |
| 18 | #ifndef TELDAT_H |
| 19 | #define TELDAT_H |
| 20 | |
| 21 | #include "ci_dat.h" |
| 22 | #include "ci_api_types.h" |
| 23 | #include "teldef.h" |
| 24 | |
| 25 | RETURNCODE_T ciGpCGSink(const utlAtParameterOp_T op, const char *command_name_p, const utlAtParameterValue_P2c parameter_values_p, const size_t num_parameters, const char *info_text_p, unsigned int *xid_p, void *arg_p); |
| 26 | RETURNCODE_T ciGpTGSINK(const utlAtParameterOp_T op, const char *command_name_p, const utlAtParameterValue_P2c parameter_values_p, const size_t num_parameters, const char *info_text_p, unsigned int *xid_p, void *arg_p); |
| 27 | RETURNCODE_T ciCGSend(const utlAtParameterOp_T op, const char *command_name_p, const utlAtParameterValue_P2c parameter_values_p, const size_t num_parameters, const char *info_text_p, unsigned int *xid_p, void *arg_p); |
| 28 | RETURNCODE_T ciCsDataSink(const utlAtParameterOp_T op, const char *command_name_p, const utlAtParameterValue_P2c parameter_values_p, const size_t num_parameters, const char *info_text_p, unsigned int *xid_p, void *arg_p); |
| 29 | RETURNCODE_T atdb(const utlAtParameterOp_T op, const char *command_name_p, const utlAtParameterValue_P2c parameter_values_p, const size_t num_parameters, const char *info_text_p, unsigned int *xid_p, void *arg_p); |
| 30 | RETURNCODE_T vPDUS(const utlAtParameterOp_T op, const char *command_name_p, const utlAtParameterValue_P2c parameter_values_p, const size_t num_parameters, const char *info_text_p, unsigned int *xid_p, void *arg_p); |
| 31 | #ifdef OPERATOR_VERIZON |
| 32 | RETURNCODE_T ciVZWTESTAPP(const utlAtParameterOp_T op,const char *command_name_p,const utlAtParameterValue_P2c parameter_values_p,const size_t num_parameters,const char *info_text_p, unsigned int *xid_p,void *arg_p); |
| 33 | #endif |
| 34 | RETURNCODE_T ciMBMS(const utlAtParameterOp_T op, const char *command_name_p, const utlAtParameterValue_P2c parameter_values_p, const size_t num_parameters, const char *info_text_p, unsigned int *xid_p, void *arg_p); |
| 35 | RETURNCODE_T ciMBMSEv(const utlAtParameterOp_T op, const char *command_name_p, const utlAtParameterValue_P2c parameter_values_p, const size_t num_parameters, const char *info_text_p, unsigned int *xid_p, void *arg_p); |
| 36 | RETURNCODE_T ciStarDONOF(const utlAtParameterOp_T op,const char *command_name_p,const utlAtParameterValue_P2c parameter_values_p,const size_t num_parameters,const char *info_text_p, unsigned int *xid_p,void *arg_p); |
| 37 | |
| 38 | |
| 39 | void datCnf(CiSgOpaqueHandle opSgCnfHandle, |
| 40 | CiServiceGroupID svgId, |
| 41 | CiPrimitiveID primId, |
| 42 | CiRequestHandle reqHandle, |
| 43 | void* paras); |
| 44 | |
| 45 | void datInd(CiSgOpaqueHandle opSgIndHandle, |
| 46 | CiServiceGroupID svgId, |
| 47 | CiPrimitiveID primId, |
| 48 | CiIndicationHandle indHandle, |
| 49 | void* pParam); |
| 50 | |
| 51 | #endif |
| 52 | |