homescreensrv_plat/sapi_actionhandler/actionhandlerplugins/data/actionhandlerplugins.rss
changeset 0 79c6a41cd166
equal deleted inserted replaced
-1:000000000000 0:79c6a41cd166
       
     1 /*
       
     2 * Copyright (c) 2006-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:  App for Action handler
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #include <ecom/registryinfo.rh>
       
    20 #include "ahpluginuids.hrh"
       
    21 
       
    22 // ---------------------------------------------------------------------------
       
    23 // theInfo
       
    24 // Declares info for implementations
       
    25 // ---------------------------------------------------------------------------
       
    26 //
       
    27 RESOURCE REGISTRY_INFO theInfo
       
    28 	{
       
    29 	// UID for the DLL
       
    30 	dll_uid = 0x10282E64;
       
    31 	// Declare array of interface info
       
    32 	interfaces = 
       
    33 		{
       
    34 		INTERFACE_INFO
       
    35 			{
       
    36 			// UID of interface that is implemented
       
    37 			interface_uid = KAHPluginInterfaceUid;
       
    38 			implementations = 
       
    39 				{
       
    40 				// Info for App Handler
       
    41 				IMPLEMENTATION_INFO
       
    42 					{
       
    43 					implementation_uid = 0x10282E5F;
       
    44 					version_no = 1;
       
    45 					display_name = "Implementation 1";
       
    46 					default_data = "1";
       
    47 					opaque_data = "";
       
    48 					},
       
    49 				// Info for Tel Handler
       
    50 				IMPLEMENTATION_INFO
       
    51 					{
       
    52 					implementation_uid = 0x10282E61;
       
    53 					version_no = 1;
       
    54 					display_name = "Implementation 2";
       
    55 					default_data = "2";
       
    56 					opaque_data = "";
       
    57 					},
       
    58 				// Info for Message Handler
       
    59 				IMPLEMENTATION_INFO
       
    60 					{
       
    61 					implementation_uid = 0x10282E62;
       
    62 					version_no = 1;
       
    63 					display_name = "Implementation 3";
       
    64 					default_data = "3";
       
    65 					opaque_data = "";
       
    66 					},
       
    67 				// Info for HelpLauncher
       
    68 				IMPLEMENTATION_INFO
       
    69 					{
       
    70 					implementation_uid = 0x2001B285;
       
    71 					version_no = 1;
       
    72 					display_name = "Implementation 4";
       
    73 					default_data = "4";
       
    74 					opaque_data = "";
       
    75 					}
       
    76 				};
       
    77 			}
       
    78 		};
       
    79 	}
       
    80