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