equal
deleted
inserted
replaced
1 /* |
|
2 * Copyright (c) 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 GSDisplayPlugin |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 // INCLUDES |
|
20 #include "GSDisplayPlugin.h" |
|
21 |
|
22 #ifdef FF_POWER_SAVE |
|
23 #include "PSMDisplayPlugin.h" |
|
24 #endif // FF_POWER_SAVE |
|
25 |
|
26 #include <e32std.h> |
|
27 #include <implementationproxy.h> |
|
28 |
|
29 |
|
30 // CONSTANTS |
|
31 const TImplementationProxy KGSDisplayPluginImplementationTable[] = |
|
32 { |
|
33 IMPLEMENTATION_PROXY_ENTRY( 0x10207441, CGSDisplayPlugin::NewL ) |
|
34 #ifdef FF_POWER_SAVE |
|
35 , |
|
36 IMPLEMENTATION_PROXY_ENTRY( 0x2000B592, CPSMDisplayPlugin::NewL ) |
|
37 #endif // FF_POWER_SAVE |
|
38 }; |
|
39 |
|
40 |
|
41 // --------------------------------------------------------------------------- |
|
42 // ImplementationGroupProxy |
|
43 // |
|
44 // Gate/factory function |
|
45 // --------------------------------------------------------------------------- |
|
46 // |
|
47 EXPORT_C const TImplementationProxy* ImplementationGroupProxy( |
|
48 TInt& aTableCount ) |
|
49 { |
|
50 aTableCount = sizeof( KGSDisplayPluginImplementationTable ) |
|
51 / sizeof( TImplementationProxy ); |
|
52 return KGSDisplayPluginImplementationTable; |
|
53 } |
|
54 |
|
55 |
|
56 // End of File |
|