td_hsc_public_key_event_type.h

来自「Motorola synergy audio component」· C头文件 代码 · 共 78 行

H
78
字号
#ifndef TD_HSC_PUBLIC_KEY_EVENT_TYPE_INCLUDE#define TD_HSC_PUBLIC_KEY_EVENT_TYPE_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:       Commmon definitions for HSC key events which could be sent to       software entities external to the HSC.       Provides typdef for key event variables, and definitions for       key press and release events.       Definitions for HSC internal events should include this file to       get the starting code for enumerating those events. See below.  ************** REVISION HISTORY **********************************************     Date       Author      Reference   ========   ========    ==========================   99-01-04   travisw     PR - CSGce26368              Backlight turns on upon incoming SMSCB              - Updated file to current template              - Fixed #define above*//************** HEADER FILE INCLUDES ******************************************//************** CONSTANTS *****************************************************//************** STRUCTURES, ENUMS, AND TYPEDEFS *******************************/    /*******************************************************************    *              HSC PUBLIC KEY EVENTS DEFINITIONS    *******************************************************************/enum{    /* DO NOT CHANGE THE FOLLOWING 2 CONSTANTS!             */    /* THE AUDIO MANAGER DEPENDS ON THEIR VALUES AS STATED. */    HSCK_KEY_RELEASE = 0,           /* Key changed from pressed to released. */    HSCK_KEY_PRESS   = 1,           /* Key changed from released to pressed. */                               /* ALL "PUBLIC" HSC KEY EVENTS DEFINED ABOVE. */                               /* HSC RESERVED EVENT CODES START HERE:       */                               /* The following constant provides a starting */                               /* value for enumeration of event types which */                               /* are internal to the HSC. (Done elsewhere)  */    HSCK_KEY_HSC_INTERNAL_EVENTS    /* intern1 = HSCK_KEY_HSC_INTERNAL_EVENTS */};    /*******************************************************************    *         TYPEDEF FOR PUBLIC KEY EVENT TYPE VARIABLES    *******************************************************************/typedef UINT8 TD_HSC_PUBLIC_KEY_EVENT_TYPE;/************** FUNCTION PROTOTYPES *******************************************//************** MACROS ********************************************************//************** CLASS DEFINITIONS *********************************************//************** GLOBAL VARIABLES **********************************************/#ifdef __cplusplus         /*  Allow #include in a C++ file.  */}#endif#endif      /* End Of Definitions.  */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?