presencefwsimpleadpt/group/simpleplugin.rss
branchGCC_SURGE
changeset 28 d9861ae9169c
parent 23 77cb48a03620
parent 26 04ca1926b01c
equal deleted inserted replaced
23:77cb48a03620 28:d9861ae9169c
     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:    ECOM registery info for SIP/Simple Protocol Plugin
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 
       
    21 #include <ecom/registryinfov2.rh>
       
    22 #include <ximpprotocolpluginifids.hrh>
       
    23 #include "prfwsimpleplugin.hrh"
       
    24 
       
    25 // ---------------------------------------------------------------------------
       
    26 // ECOM registery info for Presence Framework ECOM hook
       
    27 // ---------------------------------------------------------------------------
       
    28 //
       
    29 RESOURCE REGISTRY_INFO theInfo 
       
    30     {
       
    31     resource_format_version = RESOURCE_FORMAT_VERSION_2;
       
    32     dll_uid = SIMPLEPLUGIN_DLL_UID_SIMPLE_PROTOCOL;
       
    33 
       
    34     interfaces =
       
    35         {
       
    36         INTERFACE_INFO
       
    37             {
       
    38             // implemented interface
       
    39             interface_uid = XIMP_ECOM_IF_UID_PROTOCOL_PLUGIN_BASE_INTERFACE;
       
    40 
       
    41             implementations =
       
    42                 {
       
    43                 IMPLEMENTATION_INFO
       
    44                     {
       
    45                     implementation_uid = SIMPLEPLUGIN_1_IMPLEMENTATION_UID;
       
    46                     version_no         = 1;
       
    47                     display_name       = "SIMPLE Protocol";
       
    48                     default_data       = "SIMPLE";
       
    49 
       
    50                     // Protocol capabilities: "<tag1>value<tag2>value..."
       
    51                     //
       
    52                     // <p>Provider
       
    53                     // <f>Feature id
       
    54                     // <s>Supported schema
       
    55                     //
       
    56                     // Example:
       
    57                     // "<p>Nokia<f>feat/pres/foo<f>feat/pres/bar<s>sip"
       
    58                     //
       
    59                     opaque_data        = "<p>Nokia<f>feat/pres/pub<f>feat/pres/fetch<f>feat/pres/subs<s>sip";
       
    60                     }
       
    61                 };
       
    62             }
       
    63         };
       
    64     }
       
    65 
       
    66