classicui_plat/extended_sounds_api/inc/eikkeysound.h
changeset 0 2f259fa3e83a
equal deleted inserted replaced
-1:000000000000 0:2f259fa3e83a
       
     1 /*
       
     2 * Copyright (c) 2002-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:  EikSrv KeySound.
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef __EIKKEYSOUND_H__
       
    19 #define __EIKKEYSOUND_H__
       
    20 
       
    21 _LIT(__KEYSOUND_SERVER_NAME, "KeySoundServer");
       
    22 
       
    23 const TInt KKeySoundServMajorVN = 1;
       
    24 const TInt KKeySoundServMinorVN = 1;
       
    25 const TInt KKeySoundServBuildVN = 0;
       
    26 
       
    27 enum TKeySoundServerCommands
       
    28     {
       
    29     EKeySoundServerInit,
       
    30     EKeySoundServerPlayKey,
       
    31     EKeySoundServerPlaySID,
       
    32     EKeySoundServerAddSIDS,
       
    33     EKeySoundServerRemoveSIDS,
       
    34     EKeySoundServerPushContext,
       
    35     EKeySoundServerPopContext,
       
    36     EKeySoundServerBringToForeground,
       
    37     EKeySoundServerStopCurrentTone,
       
    38     EKeySoundServerLockContext,
       
    39     EKeySoundServerReleaseContext,
       
    40     EKeySoundServerCloseServer,     // used inside eiksrvui RKeySoundServerCloser
       
    41     EKeySoundServerTopContext,
       
    42     EKeySoundServerDisableNextKeySound 
       
    43     };
       
    44 
       
    45 #endif // __EIKKEYSOUND_H__