searchfw/plugins/messagingplugin/data/messagessearchplugin.rss
changeset 0 f979ecb2b13e
equal deleted inserted replaced
-1:000000000000 0:f979ecb2b13e
       
     1 /*
       
     2 * Copyright (c) 2005 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:   Resource file used to register ecom dll's with registry.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #include <ecom/registryinfo.rh>
       
    21 
       
    22 // #include <SearchEcomDefines.hrh>
       
    23 // #include "MessagesSearchPlugIn.hrh"
       
    24 
       
    25 //  CONSTANTS 
       
    26 
       
    27 #define KMessagesSearchPlugInEcomDllUid            0x102823FB
       
    28 
       
    29 RESOURCE REGISTRY_INFO theInfo
       
    30 {
       
    31 	// UID for the DLL
       
    32 	dll_uid = KMessagesSearchPlugInEcomDllUid;
       
    33 
       
    34 	// Declare array of interface info 
       
    35 	interfaces = 
       
    36 	{
       
    37 		INTERFACE_INFO
       
    38 		{
       
    39 		// UID of interface that is implemented
       
    40 		interface_uid = 0x102823F6; //KSearchEcomInterfaceUid;
       
    41 		implementations = 
       
    42 			{
       
    43 			// Info for Search test implementation
       
    44 			IMPLEMENTATION_INFO
       
    45 			 {
       
    46 				implementation_uid = 0x102823FC;
       
    47 				version_no         = 1;
       
    48 				display_name       = "Messages";
       
    49 				default_data       = "0x102823FC"; // || 10272D28" ; // KMessagesSearchContentTypeUid /KEmailSearchContentTypeUidAsTUid
       
    50 				opaque_data        = "Opaque messages data";
       
    51 				}
       
    52 			};
       
    53 		}
       
    54 	};
       
    55 }
       
    56