mpx/tsrc/public/basic/common/testplugins/testcollectionplugin/data/e0000101.rss
changeset 62 b276843a15ba
equal deleted inserted replaced
58:c76ea6caa649 62:b276843a15ba
       
     1 /*
       
     2 * Copyright (c) 2002 - 2007 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:  Resource file
       
    15 *
       
    16 */
       
    17 
       
    18 #include <Ecom/RegistryInfo.rh>
       
    19 #include <mpxcollectionplugin.hrh>
       
    20 #include "testcommonpluginuids.h"
       
    21 #include "testcollectionplugintype.h"
       
    22 
       
    23 /**
       
    24  * The opaque_data syntax is made up of three parts: 
       
    25  * a list of Uids for resolving the view plugin, feature flags, priority.
       
    26  * 
       
    27  * <p>uid1;uid2;uid3</p>
       
    28  *  uid*: Supported plugin types.
       
    29  *  E.g. if podcast plugin may support music plugin as well, KMPXColPluginMusic
       
    30  *
       
    31  * <t>uid</t>
       
    32  *  uid: plugin type uid.
       
    33  *  E.g. for music plugin will be: 0x101FFCDA
       
    34  *
       
    35  * <f>flags</f> [optional]
       
    36  *  flags: sum of the required feature flags, not used now
       
    37  *
       
    38  * <i>priority</i> [optional]
       
    39  *  priority: a value of type TMPXCollectionPluginPriorities. This value determines
       
    40  *  the returning order when several plugins can support the same set of Uids. 
       
    41  *  Default value of this field is EMPXCollectionPluginPriorityal.
       
    42  */
       
    43 
       
    44 RESOURCE REGISTRY_INFO theInfo
       
    45     {
       
    46     dll_uid = KCollectionTestPlugin;
       
    47 
       
    48     interfaces = 
       
    49         {
       
    50         INTERFACE_INFO
       
    51             {
       
    52             interface_uid = KMPXCollectionPluginInterfaceUid;
       
    53             implementations = 
       
    54                 {
       
    55                 IMPLEMENTATION_INFO
       
    56                     {
       
    57                     implementation_uid = KCollectionTestPluginImpId;
       
    58                     version_no = 1;
       
    59                     display_name = "TestCollectionPlugin";
       
    60                     default_data = "";
       
    61                     opaque_data = "<s>*<e>.ts;.tp"
       
    62                                   "<t>"ECollectionPluginTypeTest"</t>"
       
    63                                   "<p>"EMPXCollectionPluginTemporary"</p>"
       
    64                                   "<i>"EMPXCollectionPluginPriorityLow"</i>";
       
    65                     }
       
    66                 };
       
    67             }
       
    68         };
       
    69     }
       
    70 
       
    71 // End of file