equal
deleted
inserted
replaced
|
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 |
|
19 // RESOURCE IDENTIFIER |
|
20 NAME SCPT |
|
21 |
|
22 // INCLUDES |
|
23 #include <ecom/registryinfov2.rh> |
|
24 #include <SCPPServerPluginDefs.hrh> |
|
25 #include <eikon.rh> |
|
26 |
|
27 #include <scptimestampplugin.loc> |
|
28 |
|
29 // CONSTANTS |
|
30 |
|
31 // MACROS |
|
32 |
|
33 // RESOURCE DEFINITIONS |
|
34 |
|
35 //----------------------------------------------------------------------------- |
|
36 // |
|
37 // theInfo |
|
38 // - The ECom resource definition for the plugin |
|
39 // |
|
40 //----------------------------------------------------------------------------- |
|
41 // |
|
42 RESOURCE REGISTRY_INFO theInfo |
|
43 { |
|
44 // We have ROM-only implementations, so declare the format |
|
45 resource_format_version = RESOURCE_FORMAT_VERSION_2; |
|
46 |
|
47 // UID for the DLL |
|
48 dll_uid = 0xA00003D6; |
|
49 // Declare array of interface info |
|
50 interfaces = |
|
51 { |
|
52 INTERFACE_INFO |
|
53 { |
|
54 // UID of interface that is implemented |
|
55 interface_uid = SCP_PLUGIN_IF_UID; |
|
56 implementations = |
|
57 { |
|
58 IMPLEMENTATION_INFO |
|
59 { |
|
60 implementation_uid = 0xA00003D7; |
|
61 version_no = 1; |
|
62 display_name = ""; |
|
63 default_data = "A00003D7"; |
|
64 opaque_data = ""; |
|
65 |
|
66 // This is a ROM-only implementation |
|
67 rom_only = 1; |
|
68 } |
|
69 }; |
|
70 } |
|
71 }; |
|
72 } |
|
73 |
|
74 // End of File |