equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2009 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 the License "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 * |
|
16 */ |
|
17 // INCLUDES |
|
18 #include <e32std.h> |
|
19 #include <ImplementationProxy.h> |
|
20 #include "AiwBrowserProviderOpenUrl.h" |
|
21 #include "AiwBrowserProviderSaveUrl.h" |
|
22 #include "logger.h" |
|
23 |
|
24 // Define the interface UIDs |
|
25 const TImplementationProxy ImplementationTable[] = |
|
26 { |
|
27 {{0x101FD683}, (TProxyNewLPtr) CAiwBrowserProviderSaveUrl::NewL}, |
|
28 {{0x101FD684}, (TProxyNewLPtr) CAiwBrowserProviderOpenUrl::NewL} |
|
29 }; |
|
30 |
|
31 // The one and only exported function that is the ECom entry point |
|
32 EXPORT_C const TImplementationProxy* ImplementationGroupProxy |
|
33 (TInt& aTableCount) |
|
34 { |
|
35 aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy); |
|
36 LOG_CREATE; |
|
37 return ImplementationTable; |
|
38 } |
|
39 |
|
40 /** |
|
41 * Standard Symbian OS DLL entry point. |
|
42 */ |
|
43 #ifndef EKA2 |
|
44 TBool E32Dll(TDllReason) |
|
45 { |
|
46 return ETrue; |
|
47 } |
|
48 #endif // EKA2 |
|
49 // End of File |
|
50 |