mmappfw_plat/mpx_common_definition_api/inc/EqualizerConstants.h
changeset 0 a2952bb97e68
equal deleted inserted replaced
-1:000000000000 0:a2952bb97e68
       
     1 /*
       
     2 * Copyright (c) 2005 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:  This file contains declarations for public constants for
       
    15 *                Equalizer
       
    16 *
       
    17 */
       
    18 
       
    19 #ifndef EQUALIZERCONSTANTS_H
       
    20 #define EQUALIZERCONSTANTS_H
       
    21 
       
    22 //  INCLUDES
       
    23 
       
    24 #include <e32std.h>
       
    25 
       
    26 // CONSTANTS
       
    27 // Used by client application for activating the preset "None"
       
    28 const TInt KEqualizerPresetNone = -1;
       
    29 
       
    30 // Used as the maximum length of a ListBox model entry (like "0\tNone")
       
    31 const TInt KListBoxEntryMaxLength = 64; 
       
    32 
       
    33 // DATA TYPES
       
    34 // Used to store a preset name or ListBox model entry
       
    35 typedef TBuf<KListBoxEntryMaxLength> TPresetName;
       
    36 
       
    37 #endif      // EQUALIZERCONSTANTS_H
       
    38 
       
    39 // End of File