satui/satplugin/data/aisatplugin.rss
branchRCL_3
changeset 20 987c9837762f
equal deleted inserted replaced
19:7d48bed6ce0c 20:987c9837762f
       
     1 /*
       
     2 * Copyright (c) 2006-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:  Registry info
       
    15  *
       
    16 */
       
    17 
       
    18 
       
    19 // INCLUDES
       
    20 #include <ecom/registryinfov2.rh>
       
    21 #include <hscontentpublisheruid.hrh>
       
    22 #include "../aisatplugininc/aisatpluginuids.hrh"
       
    23 
       
    24 /**
       
    25  * Ecom interface uid for CAiContentPublisher.
       
    26  */
       
    27 
       
    28 
       
    29 // RESOURCE DEFINITIONS 
       
    30 // -----------------------------------------------------------------------------
       
    31 //   
       
    32 // registry_info
       
    33 // Registry information required for identifying the ECOM component
       
    34 //
       
    35 // -----------------------------------------------------------------------------
       
    36 //
       
    37 
       
    38 RESOURCE REGISTRY_INFO registry_info
       
    39 {
       
    40     resource_format_version = RESOURCE_FORMAT_VERSION_2;
       
    41 
       
    42     // UID for the DLL
       
    43     dll_uid = AI_UID_ECOM_DLL_CONTENTPUBLISHER_SATPLUGIN;  // SAT plugin UID
       
    44 
       
    45     // Declare array of interface info
       
    46     interfaces = 
       
    47     {
       
    48         INTERFACE_INFO
       
    49         {
       
    50             // UID of interface that is implemented
       
    51             interface_uid = HS_UID_ECOM_INTERFACE_CONTENTPUBLISHER; 
       
    52 
       
    53             implementations = 
       
    54             {
       
    55                 IMPLEMENTATION_INFO
       
    56                 {
       
    57                     implementation_uid = AI_UID_ECOM_IMPLEMENTATION_CONTENTPUBLISHER_SATPLUGIN;
       
    58                     version_no         = 1;
       
    59                     display_name       = "";
       
    60                     default_data       = "";
       
    61                     opaque_data        = "";
       
    62                 }
       
    63             };
       
    64         }
       
    65     };
       
    66 }
       
    67 
       
    68 
       
    69 // End of File