📄 td_mmicc_call_state.h
字号:
#ifndef TD_MMICC_CALL_STATE_INCLUDE#define TD_MMICC_CALL_STATE_INCLUDE#ifdef __cplusplus /* Allow #include in a C++ file. */extern "C" {#endif/* (c) Copyright Motorola 1990, All rights reserved. Motorola Confidential Proprietary Contains confidential proprietary information of Motorola, Inc. Reverse engineering is prohibited. The copyright notice does not imply publication. DESCRIPTION: The call states that MMI CC will return from the synchronous function call to get its current state. These are NOT the indication types returned in the asynchrounous MMICC_Call_State_Ind primitive. ************** REVISION HISTORY ********************************************** Date Author Reference ======== ======== ========================== 99-02-04 stevek CR - CSGce20240 Int CSD Data Stage 3 - Added MODIDY_REQUEST state 97-10-27 jroddew CR - CSGce12159 Call Transfer Support - Added new state for call transfer 97-07-15 jroddew CSGce10474 MPTY Support - Added new states for MPTY *//* WARNING: These MUST match the definitions in mmicc_sm_states.h */enum{ TD_MMICC_CALL_STATE_IDLE, /* call is idle */ TD_MMICC_CALL_STATE_MO_ESTABLISHING, /* mob. orig. establishment in progress */ TD_MMICC_CALL_STATE_MT_ALERTING, /* waiting for user to answer call */ TD_MMICC_CALL_STATE_MT_CONNECTING, /* user accepted call, completing establishment */ TD_MMICC_CALL_STATE_ACTIVE, /* fully active */ TD_MMICC_CALL_STATE_MPTY_ACTIVE, /* call is part of fully active conference call */ TD_MMICC_CALL_STATE_HELD, /* call held */ TD_MMICC_CALL_STATE_MPTY_HELD, /* call is part of held conference call */ TD_MMICC_CALL_STATE_MPTY_BUILD_REQUEST, /* confernce build request */ TD_MMICC_CALL_STATE_HOLD_REQUEST, /* hold request */ TD_MMICC_CALL_STATE_MPTY_HOLD_REQUEST, /* conference hold request */ TD_MMICC_CALL_STATE_RETRIEVE_REQUEST, /* retrieve request */ TD_MMICC_CALL_STATE_MPTY_RETRIEVE_REQUEST, /* conference retrieve request */ TD_MMICC_CALL_STATE_MPTY_SPLIT_REQUEST, /* call is being removed from conference call */ TD_MMICC_CALL_STATE_CALL_TRANSFER_REQUEST, /* call is being transferred */ TD_MMICC_CALL_STATE_MODIFY_REQUEST, /* dual mode call is modified */ TD_MMICC_CALL_STATE_REESTABLISHING, /* reestablishing */ TD_MMICC_CALL_STATE_RELEASING /* releasing */};typedef UINT8 TD_MMICC_CALL_STATE;#ifdef __cplusplus /* Allow #include in a C++ file. */}#endif#endif /* End Of Definitions */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -