ximpfw/presence/srcpresencecache/presencecacheecomhook/presencecacheecomhook.rss
changeset 0 e6b17d312c8b
equal deleted inserted replaced
-1:000000000000 0:e6b17d312c8b
       
     1 /*
       
     2 * Copyright (c) 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:  ECom registery info for ECom hook
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #include <ecom/registryinfov2.rh>
       
    20 #include "presencedlluids.hrh"
       
    21 #include <presencemanagementifids.hrh>
       
    22 
       
    23 // ---------------------------------------------------------------------------
       
    24 // ECom registery info for XIMP Presence Manager ECom hook
       
    25 // ---------------------------------------------------------------------------
       
    26 //
       
    27 RESOURCE REGISTRY_INFO theInfo
       
    28     {
       
    29     resource_format_version = RESOURCE_FORMAT_VERSION_2;
       
    30     dll_uid = XIMP_DLL_UID_PRESENCE_CACHE_HOOK;
       
    31     
       
    32     // There are two interfaces which are invoking same implementation
       
    33     // but with different uids to invoke different functions of CPresenceCacheClient.
       
    34     interfaces =
       
    35         {
       
    36         // Presence Cache reader interface
       
    37         INTERFACE_INFO
       
    38             {
       
    39             interface_uid = XIMP_ECOM_IF_UID_PRESENCE_CACHE_READER;
       
    40             implementations =
       
    41                 {
       
    42                 IMPLEMENTATION_INFO
       
    43                     {
       
    44                     implementation_uid = XIMP_ECOM_IMPL_UID_PRESENCE_CACHE_READER;
       
    45                     version_no         = 1;
       
    46                     display_name       = "S60 Default XIMP CacheReader";
       
    47                     default_data       = XIMP_ECOM_DEFAULT_DATA_PRESENCE_INTERFACE;
       
    48                     opaque_data        = "";
       
    49                     }
       
    50                 };
       
    51             },
       
    52         // Presence cache writer interface
       
    53         INTERFACE_INFO
       
    54             {
       
    55             interface_uid = XIMP_ECOM_IF_UID_PRESENCE_CACHE_WRITER;
       
    56             implementations =
       
    57                 {
       
    58                 IMPLEMENTATION_INFO
       
    59                     {
       
    60                     implementation_uid = XIMP_ECOM_IMPL_UID_PRESENCE_CACHE_WRITER;
       
    61                     version_no         = 1;
       
    62                     display_name       = "S60 Default XIMP CacheWriter";
       
    63                     default_data       = XIMP_ECOM_DEFAULT_DATA_PRESENCE_INTERFACE;
       
    64                     opaque_data        = "";
       
    65                     }
       
    66                 };
       
    67             }            
       
    68         };
       
    69     }
       
    70