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.
15 // Describes the converter.
25 STRUCT CONARC_RESOURCE_FILE
27 /** Future use, do not use */
30 LEN WORD STRUCT converter_list[]; // Converter_data
34 /** Describes a converter within a converter DLL.
39 /** Future use, do not use */
41 /** The UID of the converter. */
44 /** Array of MIME resources describing the data types that the converter can convert.
47 LEN WORD STRUCT from_list[]; // Mime Type
48 /** Array of MIME resources describing the data types to which the converter can convert.
51 LEN WORD STRUCT to_list[]; // Mime Type
59 #define KMaxMimeType 256
65 #define KMaxTranslation 50
68 /** Describes a data type that a converter can convert to or from.
73 /** Future use, do not use */
75 /** The supported MIME type, e.g. text/html. */
76 LTEXT8 type(KMaxMimeType);
77 /** Array of LANG_DATA resources giving localised human-readable names for the MIME type.
79 Target type: LANG_DATA */
80 LEN WORD STRUCT lang_list[] ; //lang_data
84 /** A localised human-readable name for a MIME type.
89 /** Future use, do not use */
91 /** The ID of the language being used.Values should be as defined in TLanguage. */
93 /** The human-readable name for the MIME type. */
94 LTEXT translation(KMaxTranslation);