os/mm/devsound/a3fdevsound/src/a3ffourccconvertorplugin/ImplementationUidTable.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 //ImplementationUidTable.cpp
     2 
     3 // Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
     4 // All rights reserved.
     5 // This component and the accompanying materials are made available
     6 // under the terms of "Eclipse Public License v1.0"
     7 // which accompanies this distribution, and is available
     8 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
     9 //
    10 // Initial Contributors:
    11 // Nokia Corporation - initial contribution.
    12 //
    13 // Contributors:
    14 //
    15 // Description:
    16 // Save as expressly licensed to you by Symbian Software Ltd, all rights reserved.
    17 // 
    18 //
    19 
    20 #include <e32std.h>
    21 #include <ecom/implementationproxy.h>
    22 
    23 // Table of implementation UIDs associated with the FourCc to Format UID mapping. 
    24 // Note: these resources are never instantiated, and thus the associated constructor method can be given as NULL.
    25 
    26 const TImplementationProxy ImplementationTable[] =
    27 	{
    28 		IMPLEMENTATION_PROXY_ENTRY(0x1028347D, NULL),
    29 		IMPLEMENTATION_PROXY_ENTRY(0x10283482, NULL),
    30 		IMPLEMENTATION_PROXY_ENTRY(0x10283481, NULL),
    31 		IMPLEMENTATION_PROXY_ENTRY(0x10283475, NULL),
    32 		IMPLEMENTATION_PROXY_ENTRY(0x10283484, NULL),
    33 		IMPLEMENTATION_PROXY_ENTRY(0x10283486, NULL),
    34 		IMPLEMENTATION_PROXY_ENTRY(0x10283485, NULL),
    35 		IMPLEMENTATION_PROXY_ENTRY(0x10283468, NULL),
    36 		IMPLEMENTATION_PROXY_ENTRY(0x1028347F, NULL),
    37 		IMPLEMENTATION_PROXY_ENTRY(0x10283480, NULL),
    38 		IMPLEMENTATION_PROXY_ENTRY(0x10283487, NULL),
    39 		IMPLEMENTATION_PROXY_ENTRY(0x10283488, NULL),
    40 		IMPLEMENTATION_PROXY_ENTRY(0x10283489, NULL),
    41 		IMPLEMENTATION_PROXY_ENTRY(0x1028348A, NULL)
    42 	};
    43 
    44 // Exported proxy for instantiation method resolution.
    45 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
    46 	{
    47 	aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
    48 	return ImplementationTable;
    49 	}