omads/omadsappui/AiwSyncProvider/src/101F871F.rss
changeset 0 dab8a81a92de
equal deleted inserted replaced
-1:000000000000 0:dab8a81a92de
       
     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: 
       
    15 *     Declares Base service API for all providers to implement in order to
       
    16 *     offer services to Application Interworking Framework.
       
    17 *
       
    18 */
       
    19 
       
    20 
       
    21 #include <eikon.rh>
       
    22 #include "registryinfov2.rh" 
       
    23 #include "AiwSyncProvider.rh"
       
    24 #include "AiwSyncProviderUids.hrh"
       
    25 #include <AiwCommon.hrh>
       
    26 
       
    27 //
       
    28 // plugin resources are placed in z:/system/libs/plugins
       
    29 //
       
    30 // this resource is needed by CAiwServiceHandler/ECom for
       
    31 // finding out what plugins exist
       
    32 //
       
    33 //
       
    34 
       
    35 RESOURCE REGISTRY_INFO theInfo
       
    36 	{
       
    37 	resource_format_version = RESOURCE_FORMAT_VERSION_2; 
       
    38 	dll_uid = KAspSyncProviderDllUid;  // dll id
       
    39 	interfaces = 
       
    40 		{
       
    41 		INTERFACE_INFO
       
    42 			{
       
    43 
       
    44 			// aiw service class (menu/base)
       
    45 			interface_uid = KAiwClassMenu;
       
    46 
       
    47 			implementations = 
       
    48 				{
       
    49 				  IMPLEMENTATION_INFO
       
    50 					{
       
    51 
       
    52 					// unique aiw service id that identifies the exact service 
       
    53 					implementation_uid = KAspSyncProviderImplUid;
       
    54 
       
    55 					version_no = 1;
       
    56 					display_name = "AIW Sync Provider";
       
    57 					default_data = "*";
       
    58 					opaque_data = KAiwCmdSynchronizeStr "||" KAiwCmdSynchronizeSelectedStr;
       
    59 					}
       
    60 				};
       
    61 			}
       
    62 
       
    63 		};
       
    64 	}
       
    65 
       
    66 
       
    67 
       
    68 // End of file
       
    69 
       
    70