idlefw/plugins/mcsplugin/data/mcsplugin.rss
changeset 0 79c6a41cd166
child 8 d0529222e3f0
equal deleted inserted replaced
-1:000000000000 0:79c6a41cd166
       
     1 /*
       
     2 * Copyright (c) 2006 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:  Registry info
       
    15  *
       
    16 */
       
    17 
       
    18 
       
    19 // INCLUDES
       
    20 #include <ecom/registryinfov2.rh>
       
    21 #include "mcspluginuids.hrh"
       
    22 
       
    23 
       
    24 // -----------------------------------------------------------------------------
       
    25 //   
       
    26 // registry_info
       
    27 // Registry information required for identifying the ECOM component
       
    28 //
       
    29 // -----------------------------------------------------------------------------
       
    30 //
       
    31 
       
    32 RESOURCE REGISTRY_INFO registry_info
       
    33 {
       
    34     resource_format_version = RESOURCE_FORMAT_VERSION_2;
       
    35 
       
    36     dll_uid = AI_UID_ECOM_DLL_CONTENTPUBLISHER_MCSPLUGIN; 
       
    37 
       
    38     // Declare array of interface info
       
    39     interfaces = 
       
    40     {
       
    41         INTERFACE_INFO
       
    42         {
       
    43             // UID of interface that is implemented
       
    44             interface_uid = AI_UID_ECOM_INTERFACE_CONTENTPUBLISHER; 
       
    45 
       
    46             implementations = 
       
    47             {
       
    48                 IMPLEMENTATION_INFO
       
    49                 {
       
    50                     implementation_uid = AI_UID_ECOM_IMPLEMENTATION_CONTENTPUBLISHER_MCSPLUGIN;
       
    51                     version_no         = 1;
       
    52                     display_name       = "MCS plug-in";
       
    53                     default_data       = "";
       
    54                     opaque_data        = "";
       
    55                 }
       
    56             };
       
    57         }
       
    58     };
       
    59 }
       
    60 
       
    61 
       
    62 // End of File