os/mm/devsound/a3fdevsound/src/a3ffourccconvertorplugin/ImplementationUidTable.cpp
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/mm/devsound/a3fdevsound/src/a3ffourccconvertorplugin/ImplementationUidTable.cpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,49 @@
     1.4 +//ImplementationUidTable.cpp
     1.5 +
     1.6 +// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.7 +// All rights reserved.
     1.8 +// This component and the accompanying materials are made available
     1.9 +// under the terms of "Eclipse Public License v1.0"
    1.10 +// which accompanies this distribution, and is available
    1.11 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.12 +//
    1.13 +// Initial Contributors:
    1.14 +// Nokia Corporation - initial contribution.
    1.15 +//
    1.16 +// Contributors:
    1.17 +//
    1.18 +// Description:
    1.19 +// Save as expressly licensed to you by Symbian Software Ltd, all rights reserved.
    1.20 +// 
    1.21 +//
    1.22 +
    1.23 +#include <e32std.h>
    1.24 +#include <ecom/implementationproxy.h>
    1.25 +
    1.26 +// Table of implementation UIDs associated with the FourCc to Format UID mapping. 
    1.27 +// Note: these resources are never instantiated, and thus the associated constructor method can be given as NULL.
    1.28 +
    1.29 +const TImplementationProxy ImplementationTable[] =
    1.30 +	{
    1.31 +		IMPLEMENTATION_PROXY_ENTRY(0x1028347D, NULL),
    1.32 +		IMPLEMENTATION_PROXY_ENTRY(0x10283482, NULL),
    1.33 +		IMPLEMENTATION_PROXY_ENTRY(0x10283481, NULL),
    1.34 +		IMPLEMENTATION_PROXY_ENTRY(0x10283475, NULL),
    1.35 +		IMPLEMENTATION_PROXY_ENTRY(0x10283484, NULL),
    1.36 +		IMPLEMENTATION_PROXY_ENTRY(0x10283486, NULL),
    1.37 +		IMPLEMENTATION_PROXY_ENTRY(0x10283485, NULL),
    1.38 +		IMPLEMENTATION_PROXY_ENTRY(0x10283468, NULL),
    1.39 +		IMPLEMENTATION_PROXY_ENTRY(0x1028347F, NULL),
    1.40 +		IMPLEMENTATION_PROXY_ENTRY(0x10283480, NULL),
    1.41 +		IMPLEMENTATION_PROXY_ENTRY(0x10283487, NULL),
    1.42 +		IMPLEMENTATION_PROXY_ENTRY(0x10283488, NULL),
    1.43 +		IMPLEMENTATION_PROXY_ENTRY(0x10283489, NULL),
    1.44 +		IMPLEMENTATION_PROXY_ENTRY(0x1028348A, NULL)
    1.45 +	};
    1.46 +
    1.47 +// Exported proxy for instantiation method resolution.
    1.48 +EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
    1.49 +	{
    1.50 +	aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
    1.51 +	return ImplementationTable;
    1.52 +	}