|
1 /* |
|
2 * Copyright (c) 2002-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 defined way to provide information about |
|
15 * RemConTspController plug-in for Ecom framework. |
|
16 * |
|
17 */ |
|
18 |
|
19 |
|
20 // INCLUDE FILES |
|
21 #include "RemConTspController.h" |
|
22 #include <ecom/ImplementationProxy.h> |
|
23 |
|
24 // EXTERNAL DATA STRUCTURES |
|
25 |
|
26 // EXTERNAL FUNCTION PROTOTYPES |
|
27 |
|
28 // CONSTANTS |
|
29 |
|
30 // Define the private interface UIDs |
|
31 const TImplementationProxy ImplementationTable[] = |
|
32 { |
|
33 IMPLEMENTATION_PROXY_ENTRY( 0x10205045, CRemConTspController::NewL ) |
|
34 }; |
|
35 |
|
36 // MACROS |
|
37 |
|
38 // LOCAL CONSTANTS AND MACROS |
|
39 |
|
40 // MODULE DATA STRUCTURES |
|
41 |
|
42 // LOCAL FUNCTION PROTOTYPES |
|
43 |
|
44 // FORWARD DECLARATIONS |
|
45 |
|
46 // ============================= LOCAL FUNCTIONS =============================== |
|
47 |
|
48 // ----------------------------------------------------------------------------- |
|
49 // ImplementationGroupProxy Returns the number of interface implementations |
|
50 // for ECom framework. |
|
51 // |
|
52 // Returns: TImplementationProxy*: Pointer contains UID and function pointer. |
|
53 // ----------------------------------------------------------------------------- |
|
54 // |
|
55 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount) |
|
56 { |
|
57 |
|
58 aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy); |
|
59 |
|
60 return ImplementationTable; |
|
61 } |
|
62 |
|
63 // |
|
64 // End of file |