CLI_Icon.h
上传用户:lqx1163
上传日期:2014-08-13
资源大小:9183k
文件大小:2k
源码类别:

MTK

开发平台:

C/C++

  1. /*******************************************************************************
  2. *  Copyright Statement:
  3. *  --------------------
  4. *  This software is protected by Copyright and the information contained
  5. *  herein is confidential. The software may not be copied and the information
  6. *  contained herein may not be used or disclosed except with the written
  7. *  permission of MediaTek Inc. (C) 2005
  8. *
  9. *******************************************************************************/
  10. /*******************************************************************************
  11.  * Filename:
  12.  * ---------
  13.  * CLI_Icon.h
  14.  *
  15.  * Project:
  16.  * --------
  17.  * Nokia Smart Messaging
  18.  *
  19.  * Description:
  20.  * ------------
  21.  * This file defines global declaration for CLI Icon.
  22.  *
  23.  * Date :
  24.  * ------
  25.  * 18th May 2005  
  26.  *
  27.  * Author:  
  28.  * --------
  29.  * -------
  30.  *
  31.  ********************************************************************************/
  32. #ifndef _MMI_CLI_ICON_H_
  33. #define _MMI_CLI_ICON_H_
  34. #ifdef __MMI_CLI_ICON__
  35. /**************** Start : INCLUDE SECTION *************************/
  36. #include "CommonNSM.h"
  37. /**************** End   : INCLUDE SECTION *************************/
  38. /**************** Start : DEFINE SECTION *************************/
  39. /**************** End   : DEFINE SECTION *************************/
  40. /**************** Start : TYPEDEFS SECTION *************************/
  41. /*
  42.  * Sequence as appear in actual data :
  43.  * <ver><ota_header><OTA_DATA>
  44.  */
  45. typedef struct
  46. {
  47.     OTA_BMP_HEADER_STRUCT cli_icon_ota_bmp_header;  /* <ota_header> */
  48.     OTA_VERSION_STRUCT cli_icon_ota_ver;            /* <ver> : CLI Icon version number */
  49.     /* 
  50.      * <OTA_DATA> is stored in local buffer as need 
  51.      * only for conversion to BMP.<OTA_DATA> is converted 
  52.      * to BMP format and Stored in global gNSMBuffer 
  53.      */
  54. } CLI_ICON_HEADER_STRUCT;
  55. /**************** End   : TYPEDEFS SECTION *************************/
  56. /**************** Start :  GLOBAL FUNCTION DECLARATION *************************/
  57. extern void mmi_cli_icon_parse_ota_data(void);
  58. /**************** End   :  GLOBAL FUNCTION DECLARATION *************************/
  59. #endif /* __MMI_CLI_ICON__ */ /* _MMI_CLI_ICON__ */
  60. #endif /* _MMI_CLI_ICON_H_ */