1 /* |
|
2 * Copyright (c) 2006-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: ECOM proxy table for PslnApplicationShellPlugin. |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #include <e32std.h> |
|
20 #include <ecom/implementationproxy.h> |
|
21 |
|
22 #include "pslnslidesetscreensaverdialog.h" |
|
23 #include "pslnslidesetwallpaperdialog.h" |
|
24 |
|
25 // CONSTANTS |
|
26 // Define two entries - one for each type of dialog. |
|
27 const TImplementationProxy KPslnApplicationShellPluginImplementationTable[] = |
|
28 { |
|
29 IMPLEMENTATION_PROXY_ENTRY( 0x102823AE, CPslnWallpaperSlidesetDialog::NewL ), |
|
30 IMPLEMENTATION_PROXY_ENTRY( 0x102823AF, CPslnSlidesetScreensaverDialog::NewL ) |
|
31 }; |
|
32 |
|
33 // --------------------------------------------------------------------------- |
|
34 // ImplementationGroupProxy |
|
35 // |
|
36 // Gate/factory function |
|
37 // --------------------------------------------------------------------------- |
|
38 // |
|
39 EXPORT_C const TImplementationProxy* ImplementationGroupProxy( TInt& aTableCount ) |
|
40 { |
|
41 aTableCount = sizeof( KPslnApplicationShellPluginImplementationTable ) |
|
42 / sizeof( TImplementationProxy ); |
|
43 return KPslnApplicationShellPluginImplementationTable; |
|
44 } |
|
45 |
|
46 |
|
47 // --------------------------------------------------------------------------- |
|
48 // E32Dll |
|
49 // EKA1 entry point |
|
50 // |
|
51 // --------------------------------------------------------------------------- |
|
52 // |
|
53 #ifndef EKA2 |
|
54 GLDEF_C TInt E32Dll(TDllReason /*aReason*/) |
|
55 { |
|
56 return( KErrNone ); |
|
57 } |
|
58 #endif |
|
59 |
|