equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2002 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: |
|
15 * Main class. Dll entry point |
|
16 * |
|
17 */ |
|
18 |
|
19 |
|
20 |
|
21 #include <e32std.h> |
|
22 #include <ecom/implementationproxy.h> |
|
23 #include "AlwaysOnlineEmailPlugin.h" |
|
24 |
|
25 //-------------------------------- |
|
26 // Exported proxy for instantiation method resolution |
|
27 // Use the interface UID and Implementation factory method |
|
28 // as a pair for ECom instantiation. |
|
29 //-------------------------------- |
|
30 const TImplementationProxy ImplementationTable[] = |
|
31 { |
|
32 {{0x101F85ED}, (TProxyNewLPtr)CEComEmailPlugin::NewL} |
|
33 }; |
|
34 |
|
35 |
|
36 //-------------------------------- |
|
37 // ImplementationGroupProxy() |
|
38 // Give the table to the caller |
|
39 //-------------------------------- |
|
40 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount) |
|
41 { |
|
42 aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy); |
|
43 return ImplementationTable; |
|
44 } |
|
45 |
|
46 |