|
1 /* |
|
2 * Copyright (c) 2002-2005 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: ECOM proxy table for GSPenInputPlugin. |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #include <e32std.h> |
|
20 #include <implementationproxy.h> |
|
21 |
|
22 #include "gspeninputplugin.h" |
|
23 #include "gspeninputimple.h" |
|
24 |
|
25 const TImplementationProxy KGSPenInputPluginImplementationTable[] = |
|
26 { |
|
27 IMPLEMENTATION_PROXY_ENTRY(0x1027510C, CGSPenInputPlugin::NewL), |
|
28 IMPLEMENTATION_PROXY_ENTRY(0x1028185A, CGSPenInputImple::NewL) |
|
29 }; |
|
30 |
|
31 // --------------------------------------------------------- |
|
32 // Map the interface UIDs to implementation factory functions |
|
33 // --------------------------------------------------------- |
|
34 // |
|
35 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount) |
|
36 { |
|
37 aTableCount = sizeof(KGSPenInputPluginImplementationTable) |
|
38 / sizeof(TImplementationProxy); |
|
39 |
|
40 return KGSPenInputPluginImplementationTable; |
|
41 } |
|
42 |
|
43 |
|
44 // --------------------------------------------------------- |
|
45 // Exported proxy for instantiation method resolution |
|
46 // --------------------------------------------------------- |
|
47 // |
|
48 #ifndef EKA2 |
|
49 GLDEF_C TInt E32Dll( TDllReason /*aReason*/ ) |
|
50 { |
|
51 return(KErrNone); |
|
52 } |
|
53 |
|
54 #endif // EKA2 |
|
55 |
|
56 // End Of File |