|
1 /* |
|
2 * Copyright (c) 2006 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: Standard proxy of the ECOM plugin |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #include <implementationproxy.h> |
|
20 #include "mpxlocalaudioplayback.h" |
|
21 |
|
22 #if (!defined IMPLEMENTATION_PROXY_ENTRY) |
|
23 typedef TAny* TProxyNewLPtr; |
|
24 #define IMPLEMENTATION_PROXY_ENTRY(aUid,aFuncPtr) {{aUid},(TProxyNewLPtr)(aFuncPtr)} |
|
25 #endif |
|
26 |
|
27 // ---------------------------------------------------------------------------- |
|
28 // The list of implementations |
|
29 // ---------------------------------------------------------------------------- |
|
30 // |
|
31 const TImplementationProxy ImplementationTable[] = |
|
32 { IMPLEMENTATION_PROXY_ENTRY(0x101FFC06, CMPXLocalAudioPlayback::NewL) }; |
|
33 |
|
34 // ---------------------------------------------------------------------------- |
|
35 // The proxy of implementations |
|
36 // ---------------------------------------------------------------------------- |
|
37 // |
|
38 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount) |
|
39 { |
|
40 aTableCount=sizeof(ImplementationTable)/sizeof(TImplementationProxy); |
|
41 return ImplementationTable; |
|
42 } |
|
43 |
|
44 // End of File |