epoc32/include/ecom/registryinfov2.rh
author William Roberts <williamr@symbian.org>
Tue, 16 Mar 2010 16:12:26 +0000
branchSymbian2
changeset 2 2fe1408b6811
parent 0 061f57f2323e
child 4 837f303aceeb
permissions -rw-r--r--
Final list of Symbian^2 public API header files
     1 // Copyright (c) 2003-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 the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members
     5 // which accompanies this distribution, and is available
     6 // at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 // The UID identifiying an ECom plug-in resource file as having version 2 format 
    15 // 
    16 //
    17 
    18 
    19 
    20 
    21 /**
    22  @file
    23  @publishedAll
    24  @released
    25  @internalComponent
    26 */
    27 #define RESOURCE_FORMAT_VERSION_2 0x101FB0B9
    28 
    29 /** 
    30 The UID identifying client provided CResolver Interface Implementations. 
    31 @internalComponent
    32 */
    33 #define CUSTOM_RESOLVER_INTERFACE_UID 0x10009D90
    34 
    35 /** 
    36 The UID identifying Interface Implementation Resource Files. 
    37 @internalComponent
    38 */
    39 UID2 0x101F747D
    40 
    41 STRUCT IMPLEMENTATION_INFO
    42 	{
    43 	LONG	implementation_uid;
    44 	BYTE	version_no;
    45 	LTEXT	display_name;
    46 	LTEXT8	default_data;
    47 	LTEXT8	opaque_data;
    48 	BYTE	rom_only;
    49 	}
    50 
    51 STRUCT BINARY_IMPLEMENTATION_INFO
    52 	{
    53 	LONG	implementation_uid;
    54 	BYTE	version_no;
    55 	LTEXT	display_name;
    56 	LEN BYTE BYTE	default_data[];
    57 	LEN BYTE BYTE	opaque_data[];
    58 	BYTE	rom_only;
    59 	}
    60 
    61 STRUCT INTERFACE_INFO
    62 	{
    63 	LONG	interface_uid;
    64 	STRUCT	implementations[];
    65 	}
    66 
    67 STRUCT REGISTRY_INFO
    68 	{
    69 	LONG	resource_format_version;
    70 	LONG	dll_uid;
    71 	STRUCT	interfaces[];
    72 	}