upnpavcontrolpoint/upnpaccessplugin/data/101F9779.rss
branchIOP_Improvements
changeset 40 08b5eae9f9ff
parent 39 6369bfd1b60d
child 41 b4d83ea1d6e2
equal deleted inserted replaced
39:6369bfd1b60d 40:08b5eae9f9ff
     1 /** @file
       
     2 * Copyright (c) 2002-2004 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:  ECOM registration for UPnPAccess
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 // INCLUDES
       
    20 #include "ecom/registryinfo.rh"
       
    21 
       
    22 //  RESOURCE DEFINITIONS 
       
    23 // -----------------------------------------------------------------------------
       
    24 //   
       
    25 // REGISTRY_INFO theInfo
       
    26 // Declares info for the "remoteaccess/upnp" implementation
       
    27 //
       
    28 // -----------------------------------------------------------------------------
       
    29 //
       
    30 RESOURCE REGISTRY_INFO theInfo
       
    31 	{
       
    32 	// UID for the DLL
       
    33 	dll_uid = 0x101F9779;
       
    34 	// Declare array of interface info
       
    35 	interfaces = 
       
    36 		{
       
    37 		INTERFACE_INFO
       
    38 			{
       
    39 			// UID of interface that is implemented
       
    40 			interface_uid = 0x101F96E3;
       
    41 			implementations = 
       
    42 				{
       
    43 				// Info for CUpnpAccess
       
    44 				IMPLEMENTATION_INFO
       
    45 					{
       
    46 					implementation_uid = 0x101F9779; // why is it the same UID as UID3?
       
    47 					version_no = 1;
       
    48 					display_name = "upnp";
       
    49 					default_data = "remoteaccess/upnp||UPnP";
       
    50 					opaque_data = "params";
       
    51 					}
       
    52 				};
       
    53 			}
       
    54 		};
       
    55 	}
       
    56 
       
    57 // End of File