equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 1999 - 2001 Nokia Corporation and/or its subsidiary(-ies). |
|
3 * All rights reserved. |
|
4 * This component and the accompanying materials are made available |
|
5 * under the terms of the License "Eclipse Public License v1.0" |
|
6 * which accompanies this distribution, and is available |
|
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
8 * |
|
9 * Initial Contributors: |
|
10 * Nokia Corporation - initial contribution. |
|
11 * |
|
12 * Contributors: |
|
13 * |
|
14 * Description: |
|
15 * |
|
16 */ |
|
17 |
|
18 /* |
|
19 $Workfile: wml_elements.h $ |
|
20 |
|
21 Purpose: |
|
22 |
|
23 Declares the main WML structures: types deck_t and card_t. Also declares |
|
24 functions for parsing global WML NW_Byte masks. |
|
25 */ |
|
26 |
|
27 #ifndef WML_ELEMENTS_H |
|
28 #define WML_ELEMENTS_H |
|
29 |
|
30 #include "nw_wml_decoder.h" |
|
31 #include "nw_wml_elements.h" |
|
32 #include "nw_wml_defs.h" |
|
33 |
|
34 #include "nw_hed_domhelper.h" |
|
35 |
|
36 /* typedef struct NW_Wml_Element_s NW_Wml_Element_t; */ |
|
37 |
|
38 struct NW_Wml_Element_s { |
|
39 NW_Int16 id; |
|
40 NW_DOM_Node_t* domElement; |
|
41 }; |
|
42 |
|
43 |
|
44 |
|
45 #endif |