equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2005-2007 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: Phonebook 2 USIM UI Extension registry information. |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 // INCLUDES |
|
20 #include "Pbk2USIMUIUID.h" |
|
21 #include <Pbk2ExtensionUID.h> |
|
22 #include <VPbkPolicyUid.h> |
|
23 #include <ecom/registryinfov2.rh> |
|
24 |
|
25 /** |
|
26 * The registry information. |
|
27 */ |
|
28 RESOURCE REGISTRY_INFO theInfo |
|
29 { |
|
30 // use resource format version 2 to enable ROM only plugins |
|
31 resource_format_version = RESOURCE_FORMAT_VERSION_2; |
|
32 dll_uid = KPbk2USIMExtensionImplementationUID; |
|
33 interfaces = |
|
34 { |
|
35 INTERFACE_INFO |
|
36 { |
|
37 interface_uid = KPbk2UiExtensionInterfaceUID; |
|
38 implementations = |
|
39 { |
|
40 IMPLEMENTATION_INFO |
|
41 { |
|
42 implementation_uid = KPbk2USIMExtensionImplementationUID; |
|
43 version_no = 1; |
|
44 display_name = ""; |
|
45 default_data = KPbkUiExtensionDefaultDataString; |
|
46 opaque_data = "z:\\Resource\\Pbk2USimUiRes.rsc"; |
|
47 rom_only = 0; |
|
48 } |
|
49 }; |
|
50 }, |
|
51 INTERFACE_INFO |
|
52 { |
|
53 interface_uid = KVPbkCopyPolicyInterfaceUID; |
|
54 implementations = |
|
55 { |
|
56 IMPLEMENTATION_INFO |
|
57 { |
|
58 implementation_uid = KPbk2SimCopyPolicyImplementationUID; |
|
59 version_no = 1; |
|
60 display_name = "Phonebook2 SIM Copy Policy"; |
|
61 default_data = KVPbkCopyPolicyDataString; |
|
62 opaque_data = "sim"; |
|
63 } |
|
64 }; |
|
65 } |
|
66 }; |
|
67 } |
|
68 |
|
69 |
|
70 // End of File |