contentpublishingsrv/contentharvester/factorysettingsplugin/data/chfactorysettingsplugin.rss
changeset 93 82b66994846c
parent 92 782e3408c2ab
child 94 dbb8300717f7
equal deleted inserted replaced
92:782e3408c2ab 93:82b66994846c
     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 registration for Factory Settings EC harvesting plugin
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 // INCLUDES
       
    20 #include <ecom/registryinfo.rh>
       
    21 #include <contentharvesterpluginuids.hrh>
       
    22 
       
    23 //  RESOURCE DEFINITIONS 
       
    24 // -----------------------------------------------------------------------------
       
    25 //   
       
    26 // REGISTRY_INFO theInfo
       
    27 // Declares info for the "all" implementation
       
    28 //
       
    29 // -----------------------------------------------------------------------------
       
    30 //
       
    31 RESOURCE REGISTRY_INFO theInfo
       
    32 	{
       
    33 	// UID for the DLL
       
    34 	dll_uid = 0x10282E6C;
       
    35 	// Declare array of interface info
       
    36 	interfaces = 
       
    37 		{
       
    38 		INTERFACE_INFO
       
    39 			{
       
    40 			// UID of interface that is implemented
       
    41 			interface_uid = KContentHarvesterPluginUid;
       
    42 			implementations = 
       
    43 				{
       
    44 				// Info for CADatFactorySettings
       
    45 				IMPLEMENTATION_INFO
       
    46 					{
       
    47 					implementation_uid = 0x102830EF;
       
    48 					version_no = 1;
       
    49 					display_name = "factorysettings";
       
    50 					default_data = "factorysettings";
       
    51 					opaque_data = "factorysettings";
       
    52 					}
       
    53 				};
       
    54 			}
       
    55 		};
       
    56 	}
       
    57 
       
    58 // End of File