mmappfw_plat/mpx_common_api/inc/mpxplugin.hrh
changeset 0 a2952bb97e68
equal deleted inserted replaced
-1:000000000000 0:a2952bb97e68
       
     1 /*
       
     2 * Copyright (c) 2007 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:  Generic plugin resource file constants
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef MPXPLUGIN_HRH
       
    21 #define MPXPLUGIN_HRH
       
    22 
       
    23 // CONSTANTS
       
    24 
       
    25 /* Plugin feature flags 
       
    26 *  General common flags use the bottom 16 bits
       
    27 *  Framework specific flags use the top 16 bits.
       
    28 *  IE: 0xaaaabbbb where a are framework flags, b are generic flags 
       
    29 */
       
    30 enum TMPXPluginFlags
       
    31     {
       
    32     EMPXPluginFlagPreLoad = 0x0001,           /** Indicates that this plugin needs to be preloaded */
       
    33     EMPXPluginFlagUserSelectable = 0x0002    /** Indicates that this plugin is user selectable */
       
    34     };
       
    35     
       
    36 /** Plugin priorities */
       
    37 enum TMPXPluginPriorities
       
    38     {
       
    39     EMPXPluginPriorityLowest = -20000,
       
    40     EMPXPluginPriorityLow = -10000,
       
    41     EMPXPluginPriorityNormal = 0,
       
    42     EMPXPluginPriorityHigh = 10000,
       
    43     EMPXPluginPriorityHighest = 20000
       
    44     };
       
    45 
       
    46 #endif  // MPXPLUGIN_HRH
       
    47 
       
    48 // End of File