internetradio2.0/resources/2001a930.rss
changeset 0 09774dfdd46b
equal deleted inserted replaced
-1:000000000000 0:09774dfdd46b
       
     1 /*
       
     2 * Copyright (c) 2009 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 *
       
    16 */
       
    17 #include <registryinfo.rh>
       
    18 #include "irgeneralsettings.hrh"
       
    19 
       
    20 /**
       
    21 * How to use the resource definition:
       
    22 *
       
    23 * IMPLEMENTATION_INFO
       
    24 *	{
       
    25 *	implementation_uid  = <Your implementation UID here>;
       
    26 *	version_no          = 1;
       
    27 *	display_name        = "<Your plugin name here (just for debugging)>";
       
    28 *	default_data        = "<One of the below UIDs your plugin will be part of>";
       
    29 *	opaque_data         = "<Position of your plugin in the parent listbox>";
       
    30 *	}
       
    31 *
       
    32 * Plugin position must follow the postition defined in UI specification.
       
    33 * Position starts from 0. Use -1 if position is not to be used in sorting.
       
    34 *
       
    35 */
       
    36 RESOURCE REGISTRY_INFO theInfo
       
    37 	{
       
    38 	dll_uid     = IRGENERAL_SETTINGS_PLUGIN_DLL_UID; // Plugin dll UID 
       
    39 	interfaces  = 
       
    40 		{
       
    41 		INTERFACE_INFO 
       
    42 			{
       
    43 			interface_uid   = 0x10207236; // UID for CGSPluginInterface - do not change. 0x10207236
       
    44 			implementations = 
       
    45 				{
       
    46 				IMPLEMENTATION_INFO
       
    47 					{
       
    48 					implementation_uid =  IRGENERAL_SETTINGS_PLUGIN_DLL_UID; // Plugin UID 
       
    49 					version_no          = 1;
       
    50 					display_name        = "Internet Radio"; // Plugin debug name
       
    51 					default_data        = "0x10207239"; // Parent UID ie App Settings
       
    52 					opaque_data         = "-1"; // Order number 
       
    53 					}
       
    54 				};
       
    55 			}
       
    56 		};
       
    57 	}
       
    58