|
1 /* |
|
2 * Copyright (c) 2007 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: DLL entry point and ECOM implementation proxy. |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 //INCLUDE FILES |
|
20 |
|
21 // From ESMURUtils |
|
22 #include "emailtrace.h" |
|
23 #include "cesmrutilsimpl.h" |
|
24 #include "esmrinternaluid.h" |
|
25 |
|
26 // From System |
|
27 #include <e32base.h> |
|
28 #include <ecom/implementationproxy.h> |
|
29 |
|
30 // ======== LOCAL FUNCTIONS ======== |
|
31 |
|
32 // ---------------------------------------------------------------------------- |
|
33 // ImplementationTable |
|
34 // Defines instantation methods for ES MR Utils module. |
|
35 // ---------------------------------------------------------------------------- |
|
36 // |
|
37 const TImplementationProxy ImplementationTable[] = |
|
38 { |
|
39 IMPLEMENTATION_PROXY_ENTRY( KESMRUtilsCalPluginImplUid3Imap, |
|
40 CESMRUtilsImpl::NewL ), |
|
41 IMPLEMENTATION_PROXY_ENTRY( KESMRUtilsCalPluginImplUid3Smtp, |
|
42 CESMRUtilsImpl::NewL ), |
|
43 IMPLEMENTATION_PROXY_ENTRY( KESMRUtilsCalPluginImplUid3Fs, |
|
44 CESMRUtilsImpl::NewL ) |
|
45 }; |
|
46 |
|
47 // ---------------------------------------------------------------------------- |
|
48 // ImplementationGroupProxy |
|
49 // Returns instantation methods for ES MR Utils module. |
|
50 // @param aTableCount On return contains the number of instantation methods. |
|
51 // ---------------------------------------------------------------------------- |
|
52 // |
|
53 EXPORT_C const TImplementationProxy* ImplementationGroupProxy( |
|
54 TInt& aTableCount ) |
|
55 { |
|
56 aTableCount = |
|
57 sizeof( ImplementationTable ) / sizeof( TImplementationProxy ); |
|
58 return ImplementationTable; |
|
59 } |
|
60 |
|
61 // End of file |
|
62 |