diff -r 000000000000 -r 96612d01cf9f videocollection/mpxmyvideoscollection/data/vcxmyvideoscollectionplugin.RSS --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/videocollection/mpxmyvideoscollection/data/vcxmyvideoscollectionplugin.RSS Mon Jan 18 20:21:12 2010 +0200 @@ -0,0 +1,72 @@ +/* +* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). +* All rights reserved. +* This component and the accompanying materials are made available +* under the terms of the License "Eclipse Public License v1.0" +* which accompanies this distribution, and is available +* at the URL "http://www.eclipse.org/legal/epl-v10.html". +* +* Initial Contributors: +* Nokia Corporation - initial contribution. +* +* Contributors: +* +* Description: +* +*/ + + +#include +#include +#include + +/** + * The opaque_data syntax is made up of three parts: + * a list of Uids for resolving the view plugin, feature flags, priority. + * + *

uid1;uid2;uid3

+ * uid*: Supported plugin types. + * E.g. if podcast plugin may support music plugin as well, KMPXColPluginMusic + * + * uid + * uid: plugin type uid. + * E.g. for music plugin will be: 0x101FFCDA + * + * flags [optional] + * flags: sum of the required feature flags, not used now + * + * priority [optional] + * priority: a value of type TMPXCollectionPluginPriorities. This value determines + * the returning order when several plugins can support the same set of Uids. + * Default value of this field is EMPXCollectionPluginPriorityNormal. + */ + +RESOURCE REGISTRY_INFO theInfo + { + dll_uid = 0x20016B96; + + interfaces = + { + INTERFACE_INFO + { + interface_uid = KMPXCollectionPluginInterfaceUid; + implementations = + { + IMPLEMENTATION_INFO + { + implementation_uid = KVcxUidMyVideosMpxCollection; + version_no = 1; + display_name = "My Videos"; + default_data = ""; +// opaque_data = ""EMPXCollectionPluginFlagCacheable"" +// ""EMPXCollectionPluginPriorityNormal""; + opaque_data = ""EMPXCollectionPluginPriorityNormal""; + } + }; + } + }; + } + + + +