|
1 /* |
|
2 * Copyright (c) 2000 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: Implementation of terminalsecurity components |
|
15 * |
|
16 */ |
|
17 |
|
18 // INCLUDES |
|
19 #include <ecom/registryinfov2.rh> |
|
20 #include <SCPPServerPluginDefs.hrh> |
|
21 #include <eikon.rh> |
|
22 // CONSTANTS |
|
23 |
|
24 // MACROS |
|
25 |
|
26 // RESOURCE DEFINITIONS |
|
27 |
|
28 //----------------------------------------------------------------------------- |
|
29 // |
|
30 // theInfo |
|
31 // - The ECom resource definition for the plugin |
|
32 // |
|
33 //----------------------------------------------------------------------------- |
|
34 // |
|
35 RESOURCE REGISTRY_INFO theInfo |
|
36 { |
|
37 // We have ROM-only implementations, so declare the format |
|
38 resource_format_version = RESOURCE_FORMAT_VERSION_2; |
|
39 |
|
40 // UID for the DLL |
|
41 dll_uid = 0x10274264; |
|
42 // Declare array of interface info |
|
43 interfaces = |
|
44 { |
|
45 INTERFACE_INFO |
|
46 { |
|
47 // UID of interface that is implemented |
|
48 interface_uid = SCP_PLUGIN_IF_UID; |
|
49 implementations = |
|
50 { |
|
51 // SCPHistoryPlugin |
|
52 IMPLEMENTATION_INFO |
|
53 { |
|
54 implementation_uid = 0x10274265; |
|
55 version_no = 1; |
|
56 display_name = ""; |
|
57 default_data = "10274265"; |
|
58 opaque_data = ""; |
|
59 |
|
60 // This is a ROM-only implementation |
|
61 rom_only = 1; |
|
62 }, |
|
63 |
|
64 // SCPSpecificStringsPlugin |
|
65 IMPLEMENTATION_INFO |
|
66 { |
|
67 implementation_uid = 0x10274267; |
|
68 version_no = 1; |
|
69 display_name = ""; |
|
70 default_data = "10274267"; |
|
71 opaque_data = ""; |
|
72 |
|
73 // This is a ROM-only implementation |
|
74 rom_only = 1; |
|
75 } |
|
76 }; |
|
77 |
|
78 |
|
79 } |
|
80 }; |
|
81 } |
|
82 // End of File |