activityfw/storage/inc/afcmd.h
changeset 104 9b022b1f357c
equal deleted inserted replaced
103:b99b84bcd2d1 104:9b022b1f357c
       
     1 /*
       
     2 * Copyright (c) 2009 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: 
       
    15 *
       
    16 */
       
    17 #ifndef AFCMD_H
       
    18 #define AFCMD_H
       
    19 
       
    20 const TInt KRequestAppIdOffset(0);
       
    21 const TInt KRequestActOffset(1);
       
    22 const TInt KRequestData(2);
       
    23 const TInt KRequestIdOffset(0);
       
    24 
       
    25 const TInt KResponseDataSizeOffset(0);
       
    26 const TInt KResponseIdOffset(3);
       
    27 const TInt KResponseDataOffset(1);
       
    28 
       
    29 
       
    30 enum ActivityCmd {
       
    31     AddActivity =0,
       
    32     UpdateActivity,
       
    33     RemoveActivity,
       
    34     RemoveApplicationActivities,
       
    35     Activities,
       
    36     ApplicationActivities,
       
    37     ApplicationActivity,
       
    38     WaitActivity,
       
    39     LaunchActivity,
       
    40     GetThumbnail,
       
    41     GetData,
       
    42     NotifyChange,
       
    43     CancelWait,
       
    44     CancelNotify
       
    45 };
       
    46 
       
    47 #endif  //AFCMD_H
       
    48