92
|
1 |
/*
|
|
2 |
* Copyright (c) 2007-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 "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 implementation table
|
|
15 |
*
|
|
16 |
*/
|
|
17 |
|
|
18 |
#include <e32base.h>
|
|
19 |
#include <e32std.h>
|
|
20 |
#include <ecom/ecom.h>
|
|
21 |
#include <ecom/implementationproxy.h>
|
|
22 |
#include "hsappkeyhandleruids.hrh"
|
|
23 |
#include "hsappkeyplugin.h"
|
|
24 |
|
|
25 |
const TImplementationProxy AppkeyPluginImplementationTable[] =
|
|
26 |
{
|
116
|
27 |
IMPLEMENTATION_PROXY_ENTRY( KUIDAPPKEYPLUGINIMPL1, CHsAppKeyPlugin::NewL )
|
92
|
28 |
};
|
|
29 |
|
|
30 |
// ---------------------------------------------------------------------------
|
116
|
31 |
//
|
92
|
32 |
// ---------------------------------------------------------------------------
|
|
33 |
//
|
116
|
34 |
EXPORT_C const TImplementationProxy* ImplementationGroupProxy( TInt& aTableCount )
|
92
|
35 |
{
|
116
|
36 |
aTableCount = sizeof( AppkeyPluginImplementationTable ) / sizeof( TImplementationProxy );
|
92
|
37 |
|
|
38 |
return AppkeyPluginImplementationTable;
|
|
39 |
}
|