20
|
1 |
/*
|
|
2 |
* Copyright (c) 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:
|
|
15 |
*
|
|
16 |
*/
|
|
17 |
|
|
18 |
|
|
19 |
#include <ecom/registryinfo.rh>
|
|
20 |
|
|
21 |
// Declares info for two implementations
|
|
22 |
RESOURCE REGISTRY_INFO theInfo
|
|
23 |
{
|
|
24 |
// UID for the DLL. See mmp files
|
|
25 |
//__SERIES60_3X__ can't be used in resource files
|
|
26 |
dll_uid = 0x2001E5B2;
|
|
27 |
|
|
28 |
// Declare array of interface info. This dll contains implementations for
|
|
29 |
// only one interface (CSamplerInterfaceDefinition).
|
|
30 |
interfaces =
|
|
31 |
{
|
|
32 |
INTERFACE_INFO
|
|
33 |
{
|
|
34 |
// UID of interface that is implemented
|
|
35 |
interface_uid = 0x2001E5BC;
|
|
36 |
|
|
37 |
implementations =
|
|
38 |
{
|
|
39 |
IMPLEMENTATION_INFO
|
|
40 |
{
|
|
41 |
implementation_uid = 0x2001E5B2;
|
|
42 |
|
|
43 |
version_no = 1;
|
|
44 |
display_name = "General Samplers; GPP, ITT, GFC, MEM, PRI";
|
|
45 |
default_data = "gen";
|
|
46 |
opaque_data = "0"; // the order number
|
|
47 |
}
|
|
48 |
};
|
|
49 |
}
|
|
50 |
};
|
|
51 |
}
|