videditor/VideoProvider/src/VideoProvider.rss
branchRCL_3
changeset 3 e0b5df5c0969
parent 0 951a5db380a0
child 7 4c409de21d23
equal deleted inserted replaced
0:951a5db380a0 3:e0b5df5c0969
     1 /*
       
     2 * Copyright (c) 2010 Ixonos Plc.
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of the "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 * Ixonos Plc
       
    14 *
       
    15 * Description: 
       
    16 * Declares Base service API for all providers to implement in order to
       
    17 * offer services to Application Interworking Framework.
       
    18 *
       
    19 */
       
    20 
       
    21 
       
    22 
       
    23 #include <Eikon.rh>
       
    24 #include "RegistryInfoV2.rh" 
       
    25 #include "VideoProvider.rh"
       
    26 #include "VideoProviderUids.hrh"
       
    27 #include <AiwCommon.hrh>
       
    28 
       
    29 RESOURCE REGISTRY_INFO theInfo
       
    30 	{
       
    31 	resource_format_version = RESOURCE_FORMAT_VERSION_2; 
       
    32 	dll_uid = KVideoEditorProviderDllUid;
       
    33 	interfaces = 
       
    34 		{
       
    35 		INTERFACE_INFO
       
    36 			{
       
    37 			interface_uid = KAiwClassMenu;
       
    38 			implementations = 
       
    39 				{
       
    40 				IMPLEMENTATION_INFO
       
    41 					{
       
    42 					implementation_uid = KVideoEditorProviderImplUid;
       
    43 					version_no = 1;
       
    44 					display_name = "Video Editor Menu Provider";
       
    45 					default_data = "video/*";
       
    46 					opaque_data = KAiwCmdEditStr;
       
    47 					}
       
    48 				};
       
    49 			},
       
    50 		INTERFACE_INFO	
       
    51 			{
       
    52 			// Interface UID of resolvers
       
    53 			interface_uid = KAiwClassBase;
       
    54 			implementations = 
       
    55 				{
       
    56 				IMPLEMENTATION_INFO
       
    57 					{
       
    58 					implementation_uid = KVideoEditorProviderImplUid;
       
    59 					version_no = 1;
       
    60 					display_name = "Video Editor Base Provider";
       
    61 					default_data = "video/*";
       
    62 					opaque_data = KAiwCmdEditStr;
       
    63 					}
       
    64 				};
       
    65 			}
       
    66 		};
       
    67 	}
       
    68 
       
    69 // End of file
       
    70 
       
    71