mmappfw_plat/mpx_common_definition_api/inc/mpxcommonframeworkdefs.h
changeset 0 a2952bb97e68
equal deleted inserted replaced
-1:000000000000 0:a2952bb97e68
       
     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:  Framework common definitions
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef MPXCOMMONFRAMEWORKDEFS_H
       
    20 #define MPXCOMMONFRAMEWORKDEFS_H
       
    21 
       
    22 #include <e32base.h>
       
    23 #include <mpxitemid.h>
       
    24 
       
    25 enum TMPXOpenMode
       
    26     {
       
    27     EMPXOpenDefault,
       
    28     EMPXOpenGroupOrPlaylist,
       
    29     EMPXOpenAllItems,
       
    30     EMPXOpenNoPlaylist,
       
    31     EMPXOpenPlaylistOnly
       
    32     };
       
    33 
       
    34 /**
       
    35  *  Enable timer guard for async request. Debug purpose only
       
    36  */
       
    37 //#define _ENABLE_GUARD_TIMER
       
    38 #ifdef _ENABLE_GUARD_TIMER
       
    39 //Guard timer 15 seconds for async request
       
    40 const TInt32 KMPXGuardTimer=15000000;
       
    41 #endif
       
    42 
       
    43 #endif // MPXCOMMONFRAMEWORKDEFS_H
       
    44