os/ossrv/lowlevellibsandfws/pluginfw/Framework/inc/registryinfov3.rh
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
     2 // All rights reserved.
     3 // This component and the accompanying materials are made available
     4 // under the terms of "Eclipse Public License v1.0"
     5 // which accompanies this distribution, and is available
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 /**
    17  @file 
    18  @publishedPartner
    19  @released
    20 */
    21 #include <ecom/registryinfoconst.hrh>
    22 
    23 
    24 // The maximum values specified in this file are recommended and 
    25 // tested values. Exceeding these limits will risk undefined behaviour
    26 // in the resource compilation.
    27 
    28 UID2 ECOM_RESOURCE_FILE
    29 
    30 STRUCT IMPLEMENTATION_INFO
    31 	{
    32 	BYTE		     info_format;		    // version 1
    33 	LONG   			 implementation_uid;
    34 	BYTE   			 version_no;
    35 	LTEXT  			 display_name;
    36 	LEN BYTE LTEXT8  default_data[];		// maximum 2 strings with 255 bytes each	
    37 	LEN BYTE LTEXT8  opaque_data[];			// maximum 2 strings with 255 bytes each
    38 	LONG   			 extended_interfaces[]; // maximum 8 extended interfaces 
    39 	BYTE			 flags;			
    40 	}
    41 
    42 STRUCT BINARY_IMPLEMENTATION_INFO
    43 	{
    44 	BYTE	  info_format;		        // version 2
    45 	LONG	  implementation_uid;
    46 	BYTE	  version_no;
    47 	LTEXT	  display_name;
    48 	BYTE      default_data[];			// maximum 512 bytes
    49 	BYTE 	  opaque_data[];			// maximum 512 bytes
    50 	LONG	  extended_interfaces[];	// maximum 8 extended interfaces 
    51 	BYTE	  flags;			
    52 	}
    53 
    54 STRUCT INTERFACE_INFO
    55 	{
    56 	LONG	instantiation_interface_uid;
    57 	STRUCT	implementations[];			// maximum 8 implementations for each interface
    58 	}
    59 
    60 STRUCT REGISTRY_INFO
    61 	{
    62 	LONG	resource_format_version;    // Use RESOURCE_FORMAT_VERSION_3
    63 	LONG	dll_uid;
    64 	STRUCT	interfaces[];				// maximum 4 interfaces
    65 	}
    66