114
|
1 |
/*
|
|
2 |
* Copyright (c) 2006 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: Registry info
|
|
15 |
*
|
|
16 |
*/
|
|
17 |
|
|
18 |
|
|
19 |
// INCLUDES
|
|
20 |
#include <ecom/registryinfov2.rh>
|
|
21 |
#include <hscontentpublisheruid.hrh>
|
|
22 |
#include "wrtdatapluginuids.hrh"
|
|
23 |
|
|
24 |
|
|
25 |
// -----------------------------------------------------------------------------
|
|
26 |
//
|
|
27 |
// registry_info
|
|
28 |
// Registry information required for identifying the ECOM component
|
|
29 |
//
|
|
30 |
// -----------------------------------------------------------------------------
|
|
31 |
//
|
|
32 |
|
|
33 |
RESOURCE REGISTRY_INFO registry_info
|
|
34 |
{
|
|
35 |
resource_format_version = RESOURCE_FORMAT_VERSION_2;
|
|
36 |
|
|
37 |
dll_uid = WRTDP_UID_ECOM_DLL_CONTENTPUBLISHER_DATAPLUGIN;
|
|
38 |
|
|
39 |
// Declare array of interface info
|
|
40 |
interfaces =
|
|
41 |
{
|
|
42 |
INTERFACE_INFO
|
|
43 |
{
|
|
44 |
// UID of interface that is implemented
|
|
45 |
interface_uid = HS_UID_ECOM_INTERFACE_CONTENTPUBLISHER;
|
|
46 |
|
|
47 |
implementations =
|
|
48 |
{
|
|
49 |
IMPLEMENTATION_INFO
|
|
50 |
{
|
|
51 |
implementation_uid = WRTDP_UID_ECOM_IMPLEMENTATION_CONTENTPUBLISHER_DATAPLUGIN;
|
|
52 |
version_no = 1;
|
|
53 |
display_name = "WRT Data plug-in";
|
|
54 |
default_data = "";
|
|
55 |
opaque_data = "";
|
|
56 |
}
|
|
57 |
};
|
|
58 |
}
|
|
59 |
};
|
|
60 |
}
|
|
61 |
|
|
62 |
|
|
63 |
// End of File
|