equal
deleted
inserted
replaced
|
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: |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 |
|
21 |
|
22 |
|
23 |
|
24 |
|
25 // INCLUDE FILES |
|
26 #include <e32std.h> |
|
27 #include <ecom/implementationproxy.h> |
|
28 |
|
29 #include "senidwsfplugin.h" |
|
30 |
|
31 #ifndef RD_SEN_COMPILE_SIS_PACKAGE_FILES |
|
32 const TInt32 KIDWSFInterfaceUid = 0x101F96FA; |
|
33 #else |
|
34 const TInt32 KIDWSFInterfaceUid = 0x101F9731; |
|
35 #endif |
|
36 // Provides a key value pair table, this is used to identify |
|
37 // the correct construction function for the requested interface. |
|
38 const TImplementationProxy ImplementationTable[] = |
|
39 { |
|
40 #ifdef IMPLEMENTATION_PROXY_ENTRY |
|
41 IMPLEMENTATION_PROXY_ENTRY(KIDWSFInterfaceUid, CSenIdWsfPlugin::NewL) |
|
42 #else |
|
43 {{KIDWSFInterfaceUid}, CSenIdWsfPlugin::NewL} |
|
44 #endif |
|
45 }; |
|
46 |
|
47 // Function used to return an instance of the proxy table. |
|
48 EXPORT_C const TImplementationProxy* ImplementationGroupProxy( |
|
49 TInt& aTableCount) |
|
50 { |
|
51 aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy); |
|
52 return ImplementationTable; |
|
53 } |
|
54 |