1.1 --- a/epoc32/include/biftool2.rh Wed Mar 31 12:27:01 2010 +0100
1.2 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000
1.3 @@ -1,84 +0,0 @@
1.4 -// Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 -// All rights reserved.
1.6 -// This component and the accompanying materials are made available
1.7 -// 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
1.8 -// which accompanies this distribution, and is available
1.9 -// at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
1.10 -//
1.11 -// Initial Contributors:
1.12 -// Nokia Corporation - initial contribution.
1.13 -//
1.14 -// Contributors:
1.15 -//
1.16 -// Description:
1.17 -// Contains definitions for the resource files that are input to BIO Information Files (BIF)
1.18 -//
1.19 -//
1.20 -
1.21 -//
1.22 -// Constants, must match those in BIF.H
1.23 -#define KUidUseNoApp 0x00000000
1.24 -#define KUidUseDefaultApp 0x100052b2
1.25 -#define KMaxDescription 128
1.26 -#define KMaxFileExtension 10
1.27 -#define KMaxFilename 256 // must match KMaxFileName in E32std.h
1.28 -#define KMaxIDText 128
1.29 -#define KCharSetDefault 0x10003b10 // ISO-8859-1 is default, must match CharConv component
1.30 -
1.31 -
1.32 -STRUCT BIO_INFO_FILE
1.33 - {
1.34 - LONG message_type_uid=0x00000000; // Must not be left as default value
1.35 - LTEXT message_parser_name(KMaxFilename)=""; // Message parser name
1.36 -
1.37 - LONG message_app_uid=KUidUseNoApp; // Can be KUidUseNoApp, KUidUseDefaultApp or the uid of an app
1.38 -
1.39 - LTEXT message_appctrl_name(KMaxFilename) = ""; // Message Application controller name
1.40 -
1.41 - LTEXT description(KMaxDescription)="default description"; // Used to set subject text of message
1.42 - LTEXT file_extension(KMaxFileExtension)="";
1.43 -
1.44 - WORD general_data1=0x0000; // Bio message type specific and/or future expansion
1.45 - WORD general_data2=0x0000; // Bio message type specific and/or future expansion
1.46 - WORD general_data3=0x0000; // Bio message type specific and/or future expansion
1.47 -
1.48 - LTEXT icons_filename(KMaxFilename)=""; // filename of MBM holding icons
1.49 - LEN WORD WORD icon_zoom_levels[]; // must list zoom levels of icons in the order that the
1.50 - // icons are store in the MBM
1.51 -
1.52 - LEN WORD STRUCT ids[]; // array of ID
1.53 - }
1.54 -
1.55 -enum ID_TYPE // Must match TIDType in BIF.H
1.56 - {
1.57 - EUnknown,
1.58 - EIana,
1.59 - ENbs,
1.60 -
1.61 - //Receiving over WDP
1.62 - EWap,
1.63 - EWapSecure,
1.64 -
1.65 - //Receiving over WSP
1.66 - EWsp,
1.67 - EWspSecure
1.68 - };
1.69 -
1.70 -enum ID_CONFIDENCE // Must match TRecognitionConfidence in APMREC.H
1.71 - {
1.72 - ECertain=2147483647, // KMaxTInt
1.73 - EProbable=100,
1.74 - EPossible=0,
1.75 - EUnlikely=-100,
1.76 - ENotRecognized=-2147483647 // KMinTInt, should be -2147483648 but resource compiler won't allow it
1.77 - };
1.78 -
1.79 -STRUCT ID // Used by Bio message parser to id message
1.80 - {
1.81 - WORD type=EUnknown; // ID_TYPE
1.82 - LONG confidence=EPossible; // ID_CONFIDENCE
1.83 - LONG character_set=KCharSetDefault;
1.84 - LTEXT text(KMaxIDText)="";
1.85 - WORD port=0;
1.86 - WORD general_id_data=0x0000; // Bio message type specific and/or future expansion
1.87 - }