equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2002-2004 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: ECOM resource definition for Startup task plugin. |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 // INCLUDES |
|
20 #include <ecom/registryinfov2.rh> |
|
21 #include <SWInstUid.h> |
|
22 #include "SWInstPrivateUid.h" |
|
23 |
|
24 // RESOURCE DEFINITIONS |
|
25 |
|
26 RESOURCE REGISTRY_INFO registry_info |
|
27 { |
|
28 resource_format_version = RESOURCE_FORMAT_VERSION_2; |
|
29 // UID for the DLL |
|
30 dll_uid = KSWInstStartupTaskUid; |
|
31 |
|
32 // Interface info array |
|
33 interfaces = |
|
34 { |
|
35 INTERFACE_INFO |
|
36 { |
|
37 // UID of the implemented interface |
|
38 interface_uid = KSWInstTaskInterfaceUid; |
|
39 |
|
40 implementations = |
|
41 { |
|
42 IMPLEMENTATION_INFO |
|
43 { |
|
44 implementation_uid = KSWInstStartupAddImplUid; |
|
45 version_no = 1; |
|
46 display_name = "Startuplist addition task implementation"; |
|
47 default_data = "*"; |
|
48 opaque_data = " "; |
|
49 rom_only = 1; |
|
50 }, |
|
51 IMPLEMENTATION_INFO |
|
52 { |
|
53 implementation_uid = KSWInstStartupRemoveImplUid; |
|
54 version_no = 1; |
|
55 display_name = "Startuplist removal task implementation"; |
|
56 default_data = "*"; |
|
57 opaque_data = " "; |
|
58 rom_only = 1; |
|
59 } |
|
60 }; |
|
61 } |
|
62 }; |
|
63 } |
|
64 |
|
65 |
|
66 // End of File |