32
|
1 |
/*
|
|
2 |
* Copyright (c) 2002 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 |
* This file contains btmtmui resource. Entry points to Mtm.
|
|
16 |
*
|
|
17 |
*
|
|
18 |
*/
|
|
19 |
|
|
20 |
|
|
21 |
// INCLUDES
|
|
22 |
#include <mtmconfig.rh>
|
|
23 |
|
|
24 |
// RESOURCE DEFINITIONS
|
|
25 |
// ---------------------------------------------------------
|
|
26 |
//
|
|
27 |
//
|
|
28 |
// MTM info resource for Bt
|
|
29 |
//
|
|
30 |
// ---------------------------------------------------------
|
|
31 |
//
|
|
32 |
|
|
33 |
|
|
34 |
|
|
35 |
#include <e32capability.h>
|
|
36 |
|
|
37 |
RESOURCE MTM_INFO_FILE
|
|
38 |
{
|
|
39 |
mtm_type_uid = 0x10009ED5;
|
|
40 |
technology_type_uid = 0x10009ED6;
|
|
41 |
components =
|
|
42 |
{
|
|
43 |
MTM_COMPONENT_V2
|
|
44 |
{
|
42
|
45 |
//todo: Need to use localized string.
|
|
46 |
human_readable_name = "Via Bluetooth";
|
32
|
47 |
component_uid = KUidMtmServerComponentVal;
|
|
48 |
entry_point = 1;
|
|
49 |
version = VERSION_V2 {};
|
|
50 |
filename = "BtsMtm.dll";
|
|
51 |
},
|
|
52 |
MTM_COMPONENT_V2
|
|
53 |
{
|
42
|
54 |
//todo: Need to use localized string.
|
|
55 |
human_readable_name = "Via Bluetooth";
|
32
|
56 |
component_uid = KUidMtmClientComponentVal;
|
|
57 |
entry_point = 1;
|
|
58 |
version = VERSION_V2 {};
|
|
59 |
filename = "BtcMtm.dll";
|
|
60 |
},
|
|
61 |
MTM_COMPONENT_V2
|
|
62 |
{
|
42
|
63 |
//todo: Need to use localized string.
|
|
64 |
human_readable_name = "Via Bluetooth";
|
32
|
65 |
component_uid = KUidMtmUiComponentVal;
|
|
66 |
entry_point = 2;
|
|
67 |
version = VERSION_V2 {};
|
|
68 |
filename = "BtMtmUi.dll";
|
|
69 |
},
|
|
70 |
MTM_COMPONENT_V2
|
|
71 |
{
|
42
|
72 |
//todo: Need to use localized string.
|
|
73 |
human_readable_name = "Via Bluetooth";
|
32
|
74 |
component_uid = KUidMtmUiDataComponentVal;
|
|
75 |
entry_point = 1;
|
|
76 |
version = VERSION_V2 {};
|
|
77 |
filename = "BtMtmUi.dll";
|
|
78 |
}
|
|
79 |
};
|
|
80 |
}
|
|
81 |
|
|
82 |
|
|
83 |
RESOURCE MTM_CAPABILITIES
|
|
84 |
{
|
|
85 |
send_capability = 1;
|
|
86 |
body_capability = 1;
|
|
87 |
}
|
|
88 |
|
|
89 |
RESOURCE MTM_SECURITY_CAPABILITY_SET
|
|
90 |
{
|
|
91 |
capabilities = { ECapabilityLocalServices };
|
|
92 |
}
|
|
93 |
|
|
94 |
|
|
95 |
// End of File
|