mpxplugins/serviceplugins/collectionplugins/mpxinmemoryplugin/data/101FFCD9.RSS
changeset 0 ff3acec5bc43
equal deleted inserted replaced
-1:000000000000 0:ff3acec5bc43
       
     1 /*
       
     2 * Copyright (c) 2008 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 
       
    19 #include <ecom/registryinfo.rh>
       
    20 #include <mpxcollectionplugin.hrh>
       
    21 
       
    22 /**
       
    23  * The opaque_data syntax is made up of three parts: 
       
    24  * a list of Uids for resolving the view plugin, feature flags, priority.
       
    25  * 
       
    26  * <p>uid1;uid2;uid3</p>
       
    27  *  uid*: Supported plugin types.
       
    28  *  E.g. if podcast plugin may support music plugin as well, KMPXColPluginMusic
       
    29  *
       
    30  * <t>uid</t>
       
    31  *  uid: plugin type uid.
       
    32  *  E.g. for music plugin will be: 0x101FFCDA
       
    33  *
       
    34  * <f>flags</f> [optional]
       
    35  *  flags: sum of the required feature flags, not used now
       
    36  *
       
    37  * <i>priority</i> [optional]
       
    38  *  priority: a value of type TMPXCollectionPluginPriorities. This value determines
       
    39  *  the returning order when several plugins can support the same set of Uids. 
       
    40  *  Default value of this field is EMPXCollectionPluginPriorityNormal.
       
    41  */
       
    42 
       
    43 RESOURCE REGISTRY_INFO theInfo
       
    44     {
       
    45     dll_uid = 0x101FFCD9;
       
    46 
       
    47     interfaces = 
       
    48         {
       
    49         INTERFACE_INFO
       
    50             {
       
    51             interface_uid = KMPXCollectionPluginInterfaceUid;
       
    52             implementations = 
       
    53                 {
       
    54                 /*
       
    55                 * Normal In memory plugin, can be used for any collection 
       
    56                 * To resolve this plugin, Resolve with UID: EMPXCollectionPluginTemporary
       
    57                 */
       
    58                 IMPLEMENTATION_INFO
       
    59                     {
       
    60                     implementation_uid = 0x101FFCD8;
       
    61                     version_no = 1;
       
    62                     display_name = "";
       
    63                     default_data = "";
       
    64                     opaque_data = "<t>"EMPXCollectionPluginHidden"</t>"
       
    65                                   "<p>"EMPXCollectionPluginTemporary"</p>"
       
    66                                   "<i>"EMPXPluginPriorityNormal"</i>"
       
    67                                   "<f>"EMPXPluginFlagPreLoad"</f>";
       
    68                     },
       
    69                 /*
       
    70                 * Normal In memory plugin, can be used for any collection 
       
    71                 * To resolve this plugin, Resolve with UID: EMPXCollectionPluginTemporary AND
       
    72                 *                                           EMPXCollectionPluginMusic         
       
    73                 */
       
    74                 IMPLEMENTATION_INFO
       
    75                     {
       
    76                     implementation_uid = 0x10282960;
       
    77                     version_no = 1;
       
    78                     display_name = "";
       
    79                     default_data = "";
       
    80                     opaque_data = "<t>"EMPXCollectionPluginHidden"</t>"
       
    81                                   "<p>"EMPXCollectionPluginTemporary"</p>"
       
    82                                   "<p>"EMPXCollectionPluginMusic"</p>"
       
    83                                   "<i>"EMPXPluginPriorityNormal"</i>"
       
    84                                   "<f>"EMPXPluginFlagPreLoad"</f>";
       
    85                     }
       
    86                 };
       
    87             }
       
    88         };
       
    89     }
       
    90             
       
    91 
       
    92 
       
    93