taskswitcher/contextengine/tsfswserver/inc/tsfswcommon.h
changeset 4 4d54b72983ae
equal deleted inserted replaced
3:fb3763350a08 4:4d54b72983ae
       
     1 /*
       
     2 * Copyright (c) 2008 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:  common constants
       
    15  *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef TSFSWCOMMON_H
       
    20 #define TSFSWCOMMON_H
       
    21 
       
    22 #include <e32std.h>
       
    23 
       
    24 _LIT( KTsFswServerName, "tsfswserver" );
       
    25 _LIT( KTsFswServerImg, "tsfswserver" );
       
    26 
       
    27 const TUid KTsFswServerUid = { 0x2001CBE1 };
       
    28 
       
    29 enum TTsFswServerMessages
       
    30     {
       
    31     ETsFswSubscribe,
       
    32     ETsFswCancel,
       
    33     ETsFswGetBufferSize,
       
    34     ETsFswGetBuffer, // there must be a GetBufferSize request before GetBuffer
       
    35     ETsFswCloseApp,
       
    36     ETsFswSwitchToApp,
       
    37     ETsFswForegroundAppUid
       
    38     };
       
    39 
       
    40 #endif