hscaud_prim_ids.h
来自「Motorola synergy audio component」· C头文件 代码 · 共 66 行
H
66 行
#ifndef HSCAUD_PRIM_IDS_INCLUDE# define HSCAUD_PRIM_IDS_INCLUDE/************************************************************************ DESCRIPTION:** Define primitive identifiers for HandSet Controller/Audio Manager * interface primitives.** These consist of a primitive category field and a primitive number* field as described in the Motorola GSM SUBSCRIBER PRIMITIVE HEADER* DEFINITIONS document, section 4. Annex 2 of that document specifies * the values allocated for the primitive category field. Primitive * numbers are assigned here as needed.************************************************************************* (c) Copyright Motorola 1990, 1991 All rights reserved.* Motorola Confidential Proprietary* Contains confidential proprietary information of Motorola, Inc.* Reverse engineering is prohibited.* The copyright notice does not imply publication.**********************************************************************/#ifdef __cplusplus /* Allow #include in a C++ file. */extern "C" {#endif /******************************************************************* * Define the category code for HSCAUD primitives and shift it * for use as the primitive category field in the high order 6 * bits of the primitive identifier word. *******************************************************************/#define HSCAUD_PRIMITIVE_CATEGORY (0x25 << 10) /******************************************************************* * Define ID's for HSCAUD interface primitives. * * See Motorola document AUDIO MANAGER SOFTWARE INTERFACE SPEC for * details. *******************************************************************/ /* REQuests for action.*/#define HSCAUD_RX_AUDIO_REQ_ID (HSCAUD_PRIMITIVE_CATEGORY | 1)#define HSCAUD_TX_AUDIO_REQ_ID (HSCAUD_PRIMITIVE_CATEGORY | 2)#define HSCAUD_VOLUME_REQ_ID (HSCAUD_PRIMITIVE_CATEGORY | 3) /* INDicators of status.*/#define HSCAUD_HOOKSWITCH_IND_ID (HSCAUD_PRIMITIVE_CATEGORY | 12)#define HSCAUD_DTMF_FBK_MUTE_IND_ID (HSCAUD_PRIMITIVE_CATEGORY | 13)#ifdef __cplusplus /* Allow #include in a C++ file. */}#endif#endif /* End Of Definitions. */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?