srsf/sisrscontrollerplugin/data/101ff930.rss
branchRCL_3
changeset 19 e36f3802f733
parent 0 bf1d17376201
equal deleted inserted replaced
18:cad71a31b7fc 19:e36f3802f733
       
     1 /*
       
     2 * Copyright (c) 2002 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 information of SD Controller Plugin.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 //  INCLUDES
       
    20 #include <registryinfo.rh>
       
    21 #include <mmfplugininterfaceuids.hrh>
       
    22 #include "sipluginimplementationuids.hrh"
       
    23 
       
    24 
       
    25 //  RESOURCE DEFINITIONS 
       
    26 // -----------------------------------------------------------------------------
       
    27 //   
       
    28 // theInfo
       
    29 // SD Controller Plugin ECOM registration information.
       
    30 //
       
    31 // -----------------------------------------------------------------------------
       
    32 //
       
    33 RESOURCE REGISTRY_INFO theInfo
       
    34     {
       
    35 	// UID of the Plugin DLL file.
       
    36 	dll_uid = KSIDllUidController;
       
    37 	interfaces = 
       
    38 		{
       
    39 		INTERFACE_INFO
       
    40 			{
       
    41 			// ECOM interface UID. The same for all MMF plugins.
       
    42 			// ECOM interface changes, when the list of exported functions changes.
       
    43 			// MMF interfaces are extended through Custom Commands, so extending the interface
       
    44 			// does not add new exported functions.
       
    45 			interface_uid = KMmfUidPluginInterfaceController;
       
    46 			implementations = 
       
    47 				{
       
    48 				IMPLEMENTATION_INFO
       
    49 					{
       
    50 					implementation_uid = KSIUidController;
       
    51 					version_no = 1;
       
    52 					display_name = "SI Controller Plugin";
       
    53 					default_data = " ";
       
    54 					// 0x101FF932 is MMF interface UID. MMF interface changes, when
       
    55 					// the list of custom commands is changed.
       
    56 					//
       
    57 					// The interface is speaker independent custom commands.
       
    58 					opaque_data = "<s>Nokia<i>0x101FF932<a>0x300000";
       
    59 					}
       
    60 				};
       
    61 			}
       
    62 		};
       
    63     }
       
    64             
       
    65 // End of File
       
    66 
       
    67