|
1 /* |
|
2 * Copyright (c) 2006 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: Resource definitions for project ?myapp |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 NAME MPWP |
|
20 |
|
21 #include <ecom/registryinfo.rh> |
|
22 #include <mpxviewplugin.hrh> |
|
23 |
|
24 #include "mpxwaitnoteplugin.hrh" |
|
25 |
|
26 // RESOURCE DEFINITIONS |
|
27 |
|
28 /** |
|
29 * The opaque_data syntax is made up of three parts: |
|
30 * a list of Uids for resolving the view plugin, feature flags, priority. |
|
31 * |
|
32 * <p>uid1;uid2;uid3</p> |
|
33 * uid*: uid of the supported Playback/Collection plugin. |
|
34 * E.g. if the view plugin supports Local Playback plugin, the list of |
|
35 * uids will be: 0x101FFC06 |
|
36 * |
|
37 * <t>uid</t> |
|
38 * uid: plugin type uid. |
|
39 * E.g. if the view plugin supports playback type, uid will be: 0x101FFCA0 |
|
40 * |
|
41 * <f>flags</f> [optional] |
|
42 * flags: sum of the required feature flags that listed in mpxviewplugin.hrh. |
|
43 * E.g. if the view plugin needs to be pre-loaded and it's user-selectable, |
|
44 * then flags = KMPXVpFeaturePreLoaded + KMPXVpFeatureUserSelectable = 0x0003. |
|
45 * |
|
46 * <i>priority</i> [optional] |
|
47 * priority: a value of type TMPXViewPluginPriorities. This value determines |
|
48 * which view plugin will be resolved when several plugins can support the |
|
49 * same set of Uids. |
|
50 * Default value of this field is EMPXViewPluginPriorityNormal. |
|
51 */ |
|
52 RESOURCE REGISTRY_INFO theInfo |
|
53 { |
|
54 dll_uid = 0x101FFC6D; |
|
55 |
|
56 interfaces = |
|
57 { |
|
58 INTERFACE_INFO |
|
59 { |
|
60 interface_uid = KMPXViewPluginInterfaceUid; |
|
61 implementations = |
|
62 { |
|
63 IMPLEMENTATION_INFO |
|
64 { |
|
65 implementation_uid = KMPXWaitNoteDialogImplementationId; |
|
66 version_no = 1; |
|
67 display_name = "Wait Note Dialogs"; |
|
68 default_data = ""; |
|
69 opaque_data = "<t>0x101FFC6E</t>"; |
|
70 } |
|
71 }; |
|
72 } |
|
73 }; |
|
74 } |
|
75 |
|
76 // End of File |