|
1 /* |
|
2 * Copyright (c) 2002-2004 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: MCETestUIPluginImplementationProxy implementation |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 |
|
21 |
|
22 // INCLUDE FILES |
|
23 #include <e32base.h> |
|
24 #include "MCETestUIPlugin.h" |
|
25 #include <e32svr.h> |
|
26 |
|
27 // MACROS |
|
28 #define SSC_MCETestUIPLUGIN_DEBUG_PRINT1( a ) RDebug::Print( a ) |
|
29 |
|
30 // CONSTANTS |
|
31 |
|
32 // Exported proxy for instantiation method resolution |
|
33 // Use the interface implementation UID and Implementation factory method |
|
34 // as a pair for ECom instantiation. |
|
35 const TImplementationProxy Implementations[] = |
|
36 { |
|
37 IMPLEMENTATION_PROXY_ENTRY( 0x10281F9C, CMCETestUIPlugin::NewL ) |
|
38 }; |
|
39 |
|
40 |
|
41 // ========================== OTHER EXPORTED FUNCTIONS ========================= |
|
42 |
|
43 // ----------------------------------------------------------------------------- |
|
44 // ImplementationGroupProxy |
|
45 // Function to return the implementation proxy table |
|
46 // ----------------------------------------------------------------------------- |
|
47 // |
|
48 EXPORT_C const TImplementationProxy* ImplementationGroupProxy( TInt& aTableCount ) |
|
49 { |
|
50 SSC_MCETestUIPLUGIN_DEBUG_PRINT1( _L("MCETestUIPlugin ImplementationGroupProxy")); |
|
51 aTableCount = sizeof( Implementations ) / sizeof( TImplementationProxy ); |
|
52 |
|
53 return Implementations; |
|
54 } |
|
55 |
|
56 // ----------------------------------------------------------------------------- |
|
57 // E32Dll |
|
58 // DLL entry point |
|
59 // ----------------------------------------------------------------------------- |
|
60 // |
|
61 #ifndef EKA2 |
|
62 GLDEF_C TInt E32Dll ( TDllReason /*aReason*/ ) |
|
63 { |
|
64 return ( KErrNone ); |
|
65 } |
|
66 #endif |