mmappfw_plat/mpx_playback_utility_api/tsrc/testvideoplaybackplugin/data/e0000201.rss
branchRCL_3
changeset 56 63223d4fd956
parent 55 6c1dfe4da5dd
child 59 666f9a5a90a9
equal deleted inserted replaced
55:6c1dfe4da5dd 56:63223d4fd956
     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 = KPlaybackTestVideoPlugin;
       
    49 
       
    50     interfaces =
       
    51     {
       
    52         INTERFACE_INFO
       
    53         {
       
    54             interface_uid = KMPXPlaybackPluginInterfaceUid;
       
    55             implementations =
       
    56             {
       
    57                 IMPLEMENTATION_INFO
       
    58                 {
       
    59                     implementation_uid = KPlaybackTestVideoPluginImpId;
       
    60                     version_no = 1;
       
    61                     display_name = "TestVideoPlaybackPlugin";
       
    62                     default_data = "";                       
       
    63                     opaque_data = 
       
    64                         "<s><e>"
       
    65                         "<t>"EPbUnknown"</t>"
       
    66                         "<i>"EMPXPlaybackPluginPriorityHighest"</i>"
       
    67                         "<z>"MPXPlaybackPluginVersion2"</z>";
       
    68                 }
       
    69             };
       
    70         }
       
    71     };
       
    72 }
       
    73 
       
    74