mmappfw_plat/mpx_common_api/inc/mpxmessagepluginupdatedefs.h
changeset 0 a2952bb97e68
equal deleted inserted replaced
-1:000000000000 0:a2952bb97e68
       
     1 /*
       
     2 * Copyright (c) 2008 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:  Definitions for plugin update messages
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef MPXMESSAGEPLUGINUPDATEDEFS_H
       
    20 #define MPXMESSAGEPLUGINUPDATEDEFS_H
       
    21 
       
    22 #include <e32base.h>
       
    23 
       
    24 /**
       
    25 * Content ID identifying general plugin attributes
       
    26 */
       
    27 const TInt KMPXMessagePluginGeneral = 0x10282990;
       
    28 
       
    29 /**
       
    30 *  TUid - plugin UID
       
    31 */
       
    32 const TMPXAttributeData KMPXAttrPluginId = {KMPXMessagePluginGeneral, 0x01};
       
    33 
       
    34 /**
       
    35 *  TBool - ETrue if the plugin is loaded
       
    36 */
       
    37 const TMPXAttributeData KMPXAttrPluginLoaded = {KMPXMessagePluginGeneral, 0x02};
       
    38 
       
    39 /**
       
    40 *  TInt - plugin version
       
    41 */
       
    42 const TMPXAttributeData KMPXAttrPluginVersion = {KMPXMessagePluginGeneral, 0x04};
       
    43 
       
    44 /**
       
    45 * Content ID identifying plugin addition messages
       
    46 * Includes the KMPXAttrPluginId, KMPXAttrPluginLoaded and KMPXAttrPluginVersion attributes
       
    47 */
       
    48 const TInt KMPXMessagePluginAdd = 0x10282991;
       
    49 
       
    50 /**
       
    51 * Content ID identifying update start messages
       
    52 * Includes the KMPXAttrPluginId, KMPXAttrPluginLoaded and KMPXAttrPluginVersion attributes
       
    53 */
       
    54 const TInt KMPXMessagePluginUpdateStart = 0x10282992;
       
    55 
       
    56 /**
       
    57 * Content ID identifying update end messages
       
    58 * Includes the KMPXAttrPluginId, KMPXAttrPluginLoaded and KMPXAttrPluginVersion attributes
       
    59 */
       
    60 const TInt KMPXMessagePluginUpdateEnd = 0x10282993;
       
    61 
       
    62 /**
       
    63 * Content ID identifying plugin removal messages
       
    64 * Includes the KMPXAttrPluginId, KMPXAttrPluginLoaded and KMPXAttrPluginVersion attributes
       
    65 */
       
    66 const TInt KMPXMessagePluginRemove = 0x10282994;
       
    67 
       
    68 #endif // MPXMESSAGEPROGRESSDEFS_H