Attempt to represent the S^2->S^3 header reorganisation as a series of "hg rename" operations
1 // Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
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
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // Contains definitions for the resource files that are input to BIO Information Files (BIF)
19 // Constants, must match those in BIF.H
20 #define KUidUseNoApp 0x00000000
21 #define KUidUseDefaultApp 0x100052b2
22 #define KMaxDescription 128
23 #define KMaxFileExtension 10
24 #define KMaxFilename 256 // must match KMaxFileName in E32std.h
25 #define KMaxIDText 128
26 #define KCharSetDefault 0x10003b10 // ISO-8859-1 is default, must match CharConv component
31 LONG message_type_uid=0x00000000; // Must not be left as default value
32 LTEXT message_parser_name(KMaxFilename)=""; // Message parser name
34 LONG message_app_uid=KUidUseNoApp; // Can be KUidUseNoApp, KUidUseDefaultApp or the uid of an app
36 LTEXT message_appctrl_name(KMaxFilename) = ""; // Message Application controller name
38 LTEXT description(KMaxDescription)="default description"; // Used to set subject text of message
39 LTEXT file_extension(KMaxFileExtension)="";
41 WORD general_data1=0x0000; // Bio message type specific and/or future expansion
42 WORD general_data2=0x0000; // Bio message type specific and/or future expansion
43 WORD general_data3=0x0000; // Bio message type specific and/or future expansion
45 LTEXT icons_filename(KMaxFilename)=""; // filename of MBM holding icons
46 LEN WORD WORD icon_zoom_levels[]; // must list zoom levels of icons in the order that the
47 // icons are store in the MBM
49 LEN WORD STRUCT ids[]; // array of ID
52 enum ID_TYPE // Must match TIDType in BIF.H
67 enum ID_CONFIDENCE // Must match TRecognitionConfidence in APMREC.H
69 ECertain=2147483647, // KMaxTInt
73 ENotRecognized=-2147483647 // KMinTInt, should be -2147483648 but resource compiler won't allow it
76 STRUCT ID // Used by Bio message parser to id message
78 WORD type=EUnknown; // ID_TYPE
79 LONG confidence=EPossible; // ID_CONFIDENCE
80 LONG character_set=KCharSetDefault;
81 LTEXT text(KMaxIDText)="";
83 WORD general_id_data=0x0000; // Bio message type specific and/or future expansion