1.1 --- a/epoc32/include/conplugin.rh Tue Mar 16 16:12:26 2010 +0000
1.2 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000
1.3 @@ -1,95 +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 -// HEADER INFO
1.18 -// Describes the converter.
1.19 -//
1.20 -//
1.21 -
1.22 -
1.23 -
1.24 -/**
1.25 - @publishedAll
1.26 - @released
1.27 -*/
1.28 -STRUCT CONARC_RESOURCE_FILE
1.29 - {
1.30 - /** Future use, do not use */
1.31 - LLINK extension = 0;
1.32 - //
1.33 - LEN WORD STRUCT converter_list[]; // Converter_data
1.34 - }
1.35 -
1.36 -STRUCT CONVERTER_DATA
1.37 -/** Describes a converter within a converter DLL.
1.38 -
1.39 -@publishedAll
1.40 -@released */
1.41 - {
1.42 - /** Future use, do not use */
1.43 - LLINK extension = 0;
1.44 - /** The UID of the converter. */
1.45 - LONG conv_uid;
1.46 - //
1.47 - /** Array of MIME resources describing the data types that the converter can convert.
1.48 -
1.49 - Target type: MIME */
1.50 - LEN WORD STRUCT from_list[]; // Mime Type
1.51 - /** Array of MIME resources describing the data types to which the converter can convert.
1.52 -
1.53 - Target type: MIME */
1.54 - LEN WORD STRUCT to_list[]; // Mime Type
1.55 - //
1.56 - }
1.57 -
1.58 -/**
1.59 -@publishedAll
1.60 -@released
1.61 -*/
1.62 -#define KMaxMimeType 256
1.63 -
1.64 -/**
1.65 -@publishedAll
1.66 -@released
1.67 -*/
1.68 -#define KMaxTranslation 50
1.69 -
1.70 -STRUCT MIME
1.71 -/** Describes a data type that a converter can convert to or from.
1.72 -
1.73 -@publishedAll
1.74 -@released */
1.75 - {
1.76 - /** Future use, do not use */
1.77 - LLINK extension = 0;
1.78 - /** The supported MIME type, e.g. text/html. */
1.79 - LTEXT8 type(KMaxMimeType);
1.80 - /** Array of LANG_DATA resources giving localised human-readable names for the MIME type.
1.81 -
1.82 - Target type: LANG_DATA */
1.83 - LEN WORD STRUCT lang_list[] ; //lang_data
1.84 - }
1.85 -
1.86 -STRUCT LANG_DATA
1.87 -/** A localised human-readable name for a MIME type.
1.88 -
1.89 -@publishedAll
1.90 -@released */
1.91 - {
1.92 - /** Future use, do not use */
1.93 - LLINK extension = 0;
1.94 - /** The ID of the language being used.Values should be as defined in TLanguage. */
1.95 - WORD lang_id;
1.96 - /** The human-readable name for the MIME type. */
1.97 - LTEXT translation(KMaxTranslation);
1.98 - }