appinstall_plat/task_management_api/inc/SWInstStartupTaskParam.h
changeset 0 ba25891c3a9e
equal deleted inserted replaced
-1:000000000000 0:ba25891c3a9e
       
     1 /*
       
     2 * Copyright (c) 2002-2004 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:   This file contains declarations of log task parameters.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef SWINSTSTARTUPTASKPARAM_H
       
    20 #define SWINSTSTARTUPTASKPARAM_H
       
    21 
       
    22 //  INCLUDES
       
    23 #include <e32std.h>
       
    24 #include <StartupItem.hrh>
       
    25 #include <SWInstUid.h>
       
    26 
       
    27 namespace SwiUI
       
    28 {
       
    29 
       
    30 /**
       
    31 * Parameters for startup task.
       
    32 *
       
    33 * @since 3.0
       
    34 */
       
    35 class TStartupTaskParam
       
    36     {
       
    37     public:    
       
    38         
       
    39         TFileName iFileName;  // Full path to executable file
       
    40         TStartupExceptionPolicy iRecoveryPolicy; // Not used in remove
       
    41     };
       
    42 
       
    43 // Package buffer for log task parameters
       
    44 typedef TPckg<TStartupTaskParam> TStartupTaskParamPckg;
       
    45 
       
    46 // Uid for startup list addition implementation
       
    47 const TUid KSTartupTaskAddImplUid = { KSWInstStartupAddImplUid };
       
    48 
       
    49 // Uid for startup list removal implementation
       
    50 const TUid KSTartupTaskRemoveImplUid = { KSWInstStartupRemoveImplUid };    
       
    51 
       
    52 }
       
    53 
       
    54 #endif // SWINSTSTARTUPPARAM_H