taskswitcher/contextengine/hgfswserver/inc/hgfswcommon.h
changeset 4 4d54b72983ae
parent 3 fb3763350a08
child 5 c743ef5928ba
equal deleted inserted replaced
3:fb3763350a08 4:4d54b72983ae
     1 /*
       
     2  * ===========================================================================
       
     3  *  Name        : hgfswcommon.h
       
     4  *  Part of     : Huriganes / Fast Swap Server
       
     5  *  Description : common constants
       
     6  *  Version     : %version: sa1spcx1#5 %
       
     7  *
       
     8  *  Copyright © 2008 Nokia Corporation.
       
     9  *  This material, including documentation and any related 
       
    10  *  computer programs, is protected by copyright controlled by 
       
    11  *  Nokia Corporation. All rights are reserved. Copying, 
       
    12  *  including reproducing, storing, adapting or translating, any 
       
    13  *  or all of this material requires the prior written consent of 
       
    14  *  Nokia Corporation. This material also contains confidential 
       
    15  *  information which may not be disclosed to others without the 
       
    16  *  prior written consent of Nokia Corporation.
       
    17  * ===========================================================================
       
    18  */
       
    19 
       
    20 #ifndef __HGFSWCOMMON_H
       
    21 #define __HGFSWCOMMON_H
       
    22 
       
    23 #include <e32std.h>
       
    24 
       
    25 _LIT( KHgFswServerName, "hgfswserver" );
       
    26 _LIT( KHgFswServerImg, "hgfswserver" );
       
    27 
       
    28 const TUid KHgFswServerUid = { 0x2001CBE1 };
       
    29 
       
    30 enum THgFswServerMessages
       
    31     {
       
    32     EHgFswSubscribe,
       
    33     EHgFswCancel,
       
    34     EHgFswGetBufferSize,
       
    35     EHgFswGetBuffer, // there must be a GetBufferSize request before GetBuffer
       
    36     EHgFswCloseApp,
       
    37     EHgFswSwitchToApp,
       
    38     EHgFswForegroundAppUid
       
    39     };
       
    40 
       
    41 #endif