|
1 /* |
|
2 * Copyright (c) 2009 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 the License "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: |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #include <ecom/registryinfo.rh> |
|
20 #include <mpxcollectionplugin.hrh> |
|
21 #include <vcxmyvideosuids.h> |
|
22 |
|
23 /** |
|
24 * The opaque_data syntax is made up of three parts: |
|
25 * a list of Uids for resolving the view plugin, feature flags, priority. |
|
26 * |
|
27 * <p>uid1;uid2;uid3</p> |
|
28 * uid*: Supported plugin types. |
|
29 * E.g. if podcast plugin may support music plugin as well, KMPXColPluginMusic |
|
30 * |
|
31 * <t>uid</t> |
|
32 * uid: plugin type uid. |
|
33 * E.g. for music plugin will be: 0x101FFCDA |
|
34 * |
|
35 * <f>flags</f> [optional] |
|
36 * flags: sum of the required feature flags, not used now |
|
37 * |
|
38 * <i>priority</i> [optional] |
|
39 * priority: a value of type TMPXCollectionPluginPriorities. This value determines |
|
40 * the returning order when several plugins can support the same set of Uids. |
|
41 * Default value of this field is EMPXCollectionPluginPriorityNormal. |
|
42 */ |
|
43 |
|
44 RESOURCE REGISTRY_INFO theInfo |
|
45 { |
|
46 dll_uid = 0x20016B96; |
|
47 |
|
48 interfaces = |
|
49 { |
|
50 INTERFACE_INFO |
|
51 { |
|
52 interface_uid = KMPXCollectionPluginInterfaceUid; |
|
53 implementations = |
|
54 { |
|
55 IMPLEMENTATION_INFO |
|
56 { |
|
57 implementation_uid = KVcxUidMyVideosMpxCollection; |
|
58 version_no = 1; |
|
59 display_name = "My Videos"; |
|
60 default_data = ""; |
|
61 // opaque_data = "<f>"EMPXCollectionPluginFlagCacheable"</f>" |
|
62 // "<i>"EMPXCollectionPluginPriorityNormal"</i>"; |
|
63 opaque_data = "<i>"EMPXCollectionPluginPriorityNormal"</i>"; |
|
64 } |
|
65 }; |
|
66 } |
|
67 }; |
|
68 } |
|
69 |
|
70 |
|
71 |
|
72 |