gsprofilesrv_plat/profiles_engine_api/inc/ProfileEngineDomainConstants.h
changeset 0 8c5d936e5675
equal deleted inserted replaced
-1:000000000000 0:8c5d936e5675
       
     1 /*
       
     2 * Copyright (c) 2002 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:  Profiles engine constants for S60 applications to use.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef PROFILEENGINEDOMAINCONSTANTS_H
       
    21 #define PROFILEENGINEDOMAINCONSTANTS_H
       
    22 
       
    23 //  INCLUDES
       
    24 #include <e32std.h>
       
    25 
       
    26 // CONSTANTS
       
    27 /**
       
    28  * The tone to be used when an "Off" tone is needed for an alert tone. With
       
    29  * this tone the vibra can be played even if no sound is heard. This file is
       
    30  * exported by Profiles Engine and it will always be located in ROM, so this
       
    31  * value must be appended to the ROM-drive letter, for example like this:
       
    32  * @code
       
    33  * TFileName* tf = new ( ELeave ) TFileName(
       
    34  *         TParsePtrC( PathInfo::RomRootPath() ).Drive() );
       
    35  * CleanupStack::PushL( tf );
       
    36  * tf->Append( KProfileNoSoundPath );
       
    37  * @endcode
       
    38  */
       
    39 _LIT( KProfileNoSoundPath, "\\resource\\No_Sound.wav" );
       
    40 
       
    41 #endif      // PROFILEENGINEDOMAINCONSTANTS_H
       
    42 
       
    43 // End of File