|
1 // Copyright (c) 2003-2009 Nokia Corporation and/or its subsidiary(-ies). |
|
2 // All rights reserved. |
|
3 // This component and the accompanying materials are made available |
|
4 // under the terms of "Eclipse Public License v1.0" |
|
5 // which accompanies this distribution, and is available |
|
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
7 // |
|
8 // Initial Contributors: |
|
9 // Nokia Corporation - initial contribution. |
|
10 // |
|
11 // Contributors: |
|
12 // |
|
13 // Description: |
|
14 // |
|
15 |
|
16 #include <mtmconfig.rh> |
|
17 |
|
18 RESOURCE MTM_INFO_FILE |
|
19 { |
|
20 mtm_type_uid = 0x10009158; |
|
21 technology_type_uid = 0x10009157; |
|
22 components = |
|
23 { |
|
24 #ifdef __MESSAGING_API_V2__ |
|
25 MTM_COMPONENT_V2 |
|
26 { |
|
27 human_readable_name = "WAP Push Server MTM"; |
|
28 component_uid = KUidMtmServerComponentVal; |
|
29 entry_point = 2; |
|
30 version = VERSION_V2 {}; |
|
31 filename = "z:\\system\\libs\\WapPushMtmClientServer.dll"; |
|
32 }, |
|
33 MTM_COMPONENT_V2 |
|
34 { |
|
35 human_readable_name = "WAP Push Client MTM"; |
|
36 component_uid = KUidMtmClientComponentVal; |
|
37 entry_point = 1; |
|
38 version = VERSION_V2 {}; |
|
39 filename = "z:\\system\\libs\\WapPushMtmClientServer.dll"; |
|
40 }, |
|
41 MTM_COMPONENT_V2 |
|
42 { |
|
43 human_readable_name = "WAP Push UI MTM"; |
|
44 component_uid = KUidMtmUiComponentVal; |
|
45 entry_point = 2; |
|
46 version = VERSION_V2 {}; |
|
47 filename = "z:\\system\\libs\\dummyuimtm.dll"; // this does not exist |
|
48 }, |
|
49 MTM_COMPONENT_V2 |
|
50 { |
|
51 human_readable_name = "WapPush UI Data MTM"; |
|
52 component_uid = KUidMtmUiDataComponentVal; |
|
53 entry_point = 1; |
|
54 version = VERSION_V2 {}; |
|
55 filename = "z:\\system\\libs\\dummyuidatamtm.dll"; // this does not exist |
|
56 } |
|
57 #else |
|
58 MTM_COMPONENT |
|
59 { |
|
60 human_readable_name = "WAP Push Server MTM"; |
|
61 component_uid = KUidMtmServerComponentVal; |
|
62 specific_uid = 0x10009146; |
|
63 entry_point = 2; |
|
64 version = VERSION { major = 1; minor = 0; build = 100; }; |
|
65 }, |
|
66 MTM_COMPONENT |
|
67 { |
|
68 human_readable_name = "WAP Push Client MTM"; |
|
69 component_uid = KUidMtmClientComponentVal; |
|
70 specific_uid = 0x10009146; |
|
71 entry_point = 1; |
|
72 version = VERSION { major = 1; minor = 0; build = 100; }; |
|
73 }, |
|
74 MTM_COMPONENT |
|
75 { |
|
76 human_readable_name = "WAP Push UI MTM"; |
|
77 component_uid = KUidMtmUiComponentVal; |
|
78 specific_uid = 0x100094D0; |
|
79 entry_point = 2; |
|
80 version = VERSION { major = 1; minor = 0; build = 100; }; |
|
81 }, |
|
82 MTM_COMPONENT |
|
83 { |
|
84 human_readable_name = "WapPush UI Data MTM"; |
|
85 component_uid = KUidMtmUiDataComponentVal; |
|
86 specific_uid = 0x100094D0; |
|
87 entry_point = 1; |
|
88 version = VERSION { major = 1; minor = 0; build = 100; }; |
|
89 } |
|
90 #endif // __MESSAGING_API_V2__ |
|
91 }; |
|
92 } |
|
93 |
|
94 #ifdef __MESSAGING_API_V2__ |
|
95 |
|
96 RESOURCE MTM_CAPABILITIES |
|
97 { |
|
98 } |
|
99 |
|
100 RESOURCE MTM_SECURITY_CAPABILITY_SET |
|
101 { |
|
102 // Require some dummy capabilities |
|
103 capabilities = { ECapabilityLocalServices, ECapabilityPowerMgmt }; |
|
104 } |
|
105 |
|
106 #endif // __MESSAGING_API_V2__ |
|
107 |