meetingrequest/mrpolicy/mrentryresolver/data/mrentryresolver.rss
branchRCL_3
changeset 12 4ce476e64c59
equal deleted inserted replaced
11:0396474f30f5 12:4ce476e64c59
       
     1 /*
       
     2 * Copyright (c) 2008-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:  ECom registration resource for MR Entry policy resolver Plugin
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #include <ecom/registryinfov2.rh>
       
    21 #include "esmrinternaluid.h"
       
    22 
       
    23 
       
    24 // ---------------------------------------------------------------------------
       
    25 // r_registry
       
    26 // ECOM plugin registry info
       
    27 // ---------------------------------------------------------------------------
       
    28 //
       
    29 RESOURCE REGISTRY_INFO r_registry
       
    30     {
       
    31     // Resource format version 2 for ROM-only plugins
       
    32     resource_format_version = RESOURCE_FORMAT_VERSION_2;
       
    33     dll_uid = KMREntryPolicyImplementationUID;
       
    34     interfaces =
       
    35         {
       
    36         INTERFACE_INFO
       
    37             {
       
    38             interface_uid = KMRPolicyResolverInterfaceUID;
       
    39             implementations =
       
    40                 {
       
    41                 IMPLEMENTATION_INFO
       
    42                     {
       
    43                     implementation_uid = KMREntryPolicyImplementationUID;
       
    44                     version_no = 1;
       
    45                     display_name = 
       
    46                         "MR Entry Policy Resolver";// codescanner::codereview
       
    47                     default_data = "";
       
    48                     opaque_data = "";
       
    49                     rom_only = 0;
       
    50                     }
       
    51                 };
       
    52             }
       
    53         };
       
    54     }
       
    55 
       
    56