williamr@2
|
1 |
// Copyright (c) 2003-2009 Nokia Corporation and/or its subsidiary(-ies).
|
williamr@2
|
2 |
// All rights reserved.
|
williamr@2
|
3 |
// This component and the accompanying materials are made available
|
williamr@2
|
4 |
// under the terms of the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members
|
williamr@2
|
5 |
// which accompanies this distribution, and is available
|
williamr@2
|
6 |
// at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
|
williamr@2
|
7 |
//
|
williamr@2
|
8 |
// Initial Contributors:
|
williamr@2
|
9 |
// Nokia Corporation - initial contribution.
|
williamr@2
|
10 |
//
|
williamr@2
|
11 |
// Contributors:
|
williamr@2
|
12 |
//
|
williamr@2
|
13 |
// Description:
|
williamr@2
|
14 |
//
|
williamr@2
|
15 |
|
williamr@2
|
16 |
#ifndef __EXTENSION_H__
|
williamr@2
|
17 |
#define __EXTENSION_H__
|
williamr@2
|
18 |
|
williamr@2
|
19 |
#include <e32base.h>
|
williamr@2
|
20 |
|
williamr@2
|
21 |
|
williamr@2
|
22 |
//
|
williamr@2
|
23 |
// This file describes version 1.3 WBXML Extension enumerations.
|
williamr@2
|
24 |
//
|
williamr@2
|
25 |
|
williamr@2
|
26 |
enum TExtensionToken
|
williamr@2
|
27 |
/**
|
williamr@2
|
28 |
Lists enumerations used to describe the global unambiguous wbxml tokens
|
williamr@2
|
29 |
@see CParser
|
williamr@2
|
30 |
@see http://www.w3.org/TR/wbxml/
|
williamr@2
|
31 |
|
williamr@2
|
32 |
@publishedPartner
|
williamr@2
|
33 |
@released
|
williamr@2
|
34 |
*/
|
williamr@2
|
35 |
{
|
williamr@2
|
36 |
|
williamr@2
|
37 |
/**
|
williamr@2
|
38 |
Enumeration with a token value that represents
|
williamr@2
|
39 |
an inline string document-type-specific extension token.
|
williamr@2
|
40 |
Token is followed by a termstr.
|
williamr@2
|
41 |
*/
|
williamr@2
|
42 |
EExtensionTokenEXT_I_0 = 0x40,
|
williamr@2
|
43 |
|
williamr@2
|
44 |
/**
|
williamr@2
|
45 |
Enumeration with a token value that represents
|
williamr@2
|
46 |
an inline string document-type-specific extension token.
|
williamr@2
|
47 |
Token is followed by a termstr.
|
williamr@2
|
48 |
*/
|
williamr@2
|
49 |
EExtensionTokenEXT_I_1 = 0x41,
|
williamr@2
|
50 |
|
williamr@2
|
51 |
/**
|
williamr@2
|
52 |
Enumeration with a token value that represents
|
williamr@2
|
53 |
an inline string document-type-specific extension token.
|
williamr@2
|
54 |
Token is followed by a termstr.
|
williamr@2
|
55 |
*/
|
williamr@2
|
56 |
EExtensionTokenEXT_I_2 = 0x42,
|
williamr@2
|
57 |
|
williamr@2
|
58 |
/**
|
williamr@2
|
59 |
Enumeration with a token value that represents
|
williamr@2
|
60 |
an inline integer document-type-specific extension token.
|
williamr@2
|
61 |
Token is followed by a mb_u_int32.
|
williamr@2
|
62 |
*/
|
williamr@2
|
63 |
EExtensionTokenEXT_T_0 = 0x80,
|
williamr@2
|
64 |
/**
|
williamr@2
|
65 |
Enumeration with a token value that represents
|
williamr@2
|
66 |
an inline integer document-type-specific extension token.
|
williamr@2
|
67 |
Token is followed by a mb_u_int32.
|
williamr@2
|
68 |
*/
|
williamr@2
|
69 |
EExtensionTokenEXT_T_1 = 0x81,
|
williamr@2
|
70 |
|
williamr@2
|
71 |
/**
|
williamr@2
|
72 |
Enumeration with a token value that represents
|
williamr@2
|
73 |
an inline integer document-type-specific extension token.
|
williamr@2
|
74 |
Token is followed by a mb_u_int32.
|
williamr@2
|
75 |
*/
|
williamr@2
|
76 |
EExtensionTokenEXT_T_2 = 0x82,
|
williamr@2
|
77 |
|
williamr@2
|
78 |
/**
|
williamr@2
|
79 |
Enumeration with a token value that represents
|
williamr@2
|
80 |
a single -byte document-type-specific extension token.
|
williamr@2
|
81 |
*/
|
williamr@2
|
82 |
EExtensionTokenEXT_0 = 0xC0,
|
williamr@2
|
83 |
|
williamr@2
|
84 |
/**
|
williamr@2
|
85 |
Enumeration with a token value that represents
|
williamr@2
|
86 |
a single -byte document-type-specific extension token.
|
williamr@2
|
87 |
*/
|
williamr@2
|
88 |
EExtensionTokenEXT_1 = 0xC1,
|
williamr@2
|
89 |
|
williamr@2
|
90 |
/**
|
williamr@2
|
91 |
Enumeration with a token value that represents
|
williamr@2
|
92 |
a single -byte document-type-specific extension token.
|
williamr@2
|
93 |
*/
|
williamr@2
|
94 |
EExtensionTokenEXT_2 = 0xC2,
|
williamr@2
|
95 |
|
williamr@2
|
96 |
};
|
williamr@2
|
97 |
|
williamr@2
|
98 |
#endif // __EXTENSION_H__
|