diff -r 000000000000 -r a2952bb97e68 mmappfw_plat/mpx_common_api/inc/mpxmessagepluginupdatedefs.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mmappfw_plat/mpx_common_api/inc/mpxmessagepluginupdatedefs.h Thu Dec 17 08:55:47 2009 +0200 @@ -0,0 +1,68 @@ +/* +* Copyright (c) 2008 Nokia Corporation and/or its subsidiary(-ies). +* All rights reserved. +* This component and the accompanying materials are made available +* under the terms of "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: Definitions for plugin update messages +* +*/ + + +#ifndef MPXMESSAGEPLUGINUPDATEDEFS_H +#define MPXMESSAGEPLUGINUPDATEDEFS_H + +#include + +/** +* Content ID identifying general plugin attributes +*/ +const TInt KMPXMessagePluginGeneral = 0x10282990; + +/** +* TUid - plugin UID +*/ +const TMPXAttributeData KMPXAttrPluginId = {KMPXMessagePluginGeneral, 0x01}; + +/** +* TBool - ETrue if the plugin is loaded +*/ +const TMPXAttributeData KMPXAttrPluginLoaded = {KMPXMessagePluginGeneral, 0x02}; + +/** +* TInt - plugin version +*/ +const TMPXAttributeData KMPXAttrPluginVersion = {KMPXMessagePluginGeneral, 0x04}; + +/** +* Content ID identifying plugin addition messages +* Includes the KMPXAttrPluginId, KMPXAttrPluginLoaded and KMPXAttrPluginVersion attributes +*/ +const TInt KMPXMessagePluginAdd = 0x10282991; + +/** +* Content ID identifying update start messages +* Includes the KMPXAttrPluginId, KMPXAttrPluginLoaded and KMPXAttrPluginVersion attributes +*/ +const TInt KMPXMessagePluginUpdateStart = 0x10282992; + +/** +* Content ID identifying update end messages +* Includes the KMPXAttrPluginId, KMPXAttrPluginLoaded and KMPXAttrPluginVersion attributes +*/ +const TInt KMPXMessagePluginUpdateEnd = 0x10282993; + +/** +* Content ID identifying plugin removal messages +* Includes the KMPXAttrPluginId, KMPXAttrPluginLoaded and KMPXAttrPluginVersion attributes +*/ +const TInt KMPXMessagePluginRemove = 0x10282994; + +#endif // MPXMESSAGEPROGRESSDEFS_H