mpx/tsrc/public/basic/common/testplugins/testplaybackplugin/data/e0000201.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 /*
       
    19  *  The opaque_data syntax is made up of three parts:
       
    20  *  a list of Uids for resolving the view plugin, feature flags, priority.
       
    21  *
       
    22  *  <p>uid1;uid2;uid3</p>
       
    23  *    uid*: Supported plugin types.
       
    24  *    E.g. if podcast plugin may support music plugin as well,
       
    25  *         KMPXColPluginMusic
       
    26  *
       
    27  *  <t>uid</t>
       
    28  *    uid: plugin type uid.
       
    29  *    E.g. for music plugin will be: 0x101FFCDA
       
    30  *
       
    31  *  <f>flags</f> [optional]
       
    32  *    flags: sum of the required feature flags, not used now
       
    33  *
       
    34  *  <i>priority</i> [optional]
       
    35  *    priority: a value of type TMPXCollectionPluginPriorities. This value
       
    36  *              determines the returning order when several plugins can
       
    37  *              support the same set of Uids.
       
    38  *    Default value of this field is EMPXCollectionPluginPriorityNormal.
       
    39  */
       
    40 
       
    41 #include <Ecom/RegistryInfo.rh>
       
    42 #include <mpxplaybackplugin.hrh>
       
    43 #include "testcommonpluginuids.h"
       
    44 #include "testplaybackplugintype.h"
       
    45 
       
    46 RESOURCE REGISTRY_INFO theInfo
       
    47 {
       
    48     dll_uid = KPlaybackTestPlugin;
       
    49 
       
    50     interfaces =
       
    51     {
       
    52         INTERFACE_INFO
       
    53         {
       
    54             interface_uid = KMPXPlaybackPluginInterfaceUid;
       
    55             implementations =
       
    56             {
       
    57                 IMPLEMENTATION_INFO
       
    58                 {
       
    59                     implementation_uid = KPlaybackTestPluginImpId;
       
    60                     version_no = 1;
       
    61                     display_name = "TestPlaybackPlugin";
       
    62                     default_data = 
       
    63                         "video/x-pn-realvideo;"
       
    64                         "application/x-pn-realmedia;"
       
    65                         "video/3gpp2;"
       
    66                         "video/3gpp";
       
    67                     opaque_data = 
       
    68                         "<s><e>.rm;.3gp"
       
    69                         "<t>"EPbUnknown"</t>"
       
    70                         "<i>"EMPXPlaybackPluginPriorityHighest"</i>"
       
    71                         "<z>"MPXPlaybackPluginVersion2"</z>";
       
    72                 }
       
    73             };
       
    74         }
       
    75     };
       
    76 }
       
    77 
       
    78