voiceui/aiwpbkinfoviewprovider/src/10281c81.rss
branchRCL_3
changeset 19 e36f3802f733
parent 0 bf1d17376201
equal deleted inserted replaced
18:cad71a31b7fc 19:e36f3802f733
       
     1 /*
       
     2 * Copyright (c) 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: 
       
    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 "aiwpbkinfoviewprovider.rh"
       
    24 #include "aiwpbkinfoviewprovideruids.hrh"
       
    25 #include <AiwCommon.hrh>
       
    26 
       
    27 
       
    28 //
       
    29 // plugin resources are placed in z:/system/libs/plugins
       
    30 //
       
    31 // this resource is needed by CAiwServiceHandler/ECom for
       
    32 // finding out what plugins exist
       
    33 //
       
    34 //
       
    35 
       
    36 RESOURCE REGISTRY_INFO theInfo
       
    37 	{
       
    38 	resource_format_version = RESOURCE_FORMAT_VERSION_2; 
       
    39 	dll_uid = KAspInfoViewProviderDllUid;  // dll id
       
    40 	interfaces = 
       
    41 		{
       
    42 		INTERFACE_INFO
       
    43 			{
       
    44 
       
    45 			// aiw service class (menu/base)
       
    46 			interface_uid = KAiwClassMenu;
       
    47 
       
    48 			implementations = 
       
    49 				{
       
    50 				  IMPLEMENTATION_INFO
       
    51 					{
       
    52 
       
    53 					// unique aiw service id that identifies the exact service 
       
    54 					implementation_uid = KAspInfoViewProviderImplUid;
       
    55 
       
    56 					version_no = 1;
       
    57 					display_name = "AIW Info View Provider";
       
    58 					default_data = "*";
       
    59 					opaque_data = "10281C83";
       
    60 					}
       
    61 				};
       
    62 			}
       
    63 
       
    64 		};
       
    65 	}
       
    66 
       
    67 
       
    68 
       
    69 // End of file
       
    70 
       
    71