Go to the source code of this file.
Data Structures | |
| struct | pa_mcc_CallEventData_t |
Typedefs | |
| typedef void(* | pa_mcc_CallEventHandlerFunc_t )(pa_mcc_CallEventData_t *dataPtr) |
Enumerations | |
| enum | pa_mcc_clir_t { PA_MCC_ACTIVATE_CLIR = 0, PA_MCC_DEACTIVATE_CLIR = 1 } |
| enum | pa_mcc_cug_t { PA_MCC_ACTIVATE_CUG = 0, PA_MCC_DEACTIVATE_CUG = 1 } |
Functions | |
| le_result_t | pa_mcc_SetCallEventHandler (pa_mcc_CallEventHandlerFunc_t handlerFuncPtr) |
| void | pa_mcc_ClearCallEventHandler (void) |
| le_result_t | pa_mcc_VoiceDial (const char *pn, pa_mcc_clir_t clir, pa_mcc_cug_t cug, uint8_t *callIdPtr) |
| le_result_t | pa_mcc_Answer (void) |
| le_result_t | pa_mcc_Hangup (void) |
Legato Modem Call Control Platform Adapter API include file.
Copyright (C) Sierra Wireless, Inc. 2013. All rights reserved. Use of this work is subject to license.
| typedef void(* pa_mcc_CallEventHandlerFunc_t)(pa_mcc_CallEventData_t *dataPtr) |
A handler that is called whenever a call event is received by the modem.
| pData | Data information that the handler may require. |
| enum pa_mcc_clir_t |
| enum pa_mcc_cug_t |
| le_result_t pa_mcc_Answer | ( | void | ) |
This function must be called to answer a call.
| void pa_mcc_ClearCallEventHandler | ( | void | ) |
This function must be called to unregister the handler for incoming calls handling.
| le_result_t pa_mcc_Hangup | ( | void | ) |
This function must be called to disconnect the remote user.
| le_result_t pa_mcc_SetCallEventHandler | ( | pa_mcc_CallEventHandlerFunc_t | handlerFuncPtr | ) |
This function must be called to register a handler for Call event notifications.
| [in] | handlerFuncPtr | The event handler function. |
| le_result_t pa_mcc_VoiceDial | ( | const char * | pn, |
| pa_mcc_clir_t | clir, | ||
| pa_mcc_cug_t | cug, | ||
| uint8_t * | callIdPtr | ||
| ) |
This function must be called to set a voice call.
| [in] | pn | The phone number. |
| [in] | clir | The CLIR supplementary service subscription. |
| [in] | cug | The CUG supplementary service information. |
| [out] | callIdPtr | The outgoing call ID. |