tracesrv/tracecore/btrace_handler/test/TEF/te_tracecore/inc/te_processcreator.h
changeset 56 aa2539c91954
equal deleted inserted replaced
54:a151135b0cf9 56:aa2539c91954
       
     1 /**
       
     2 * Copyright (c) 2002-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 
       
    18 
       
    19 
       
    20 /**
       
    21  @file
       
    22  @internalTechnology
       
    23 */
       
    24 #ifndef __TE_PROCESSCREATOR_H__
       
    25 #define __TE_PROCESSCREATOR_H__
       
    26 
       
    27 #include <e32base.h>
       
    28 
       
    29 struct TProcessCreatorResults
       
    30     {
       
    31 	TInt iCode;
       
    32 	TExitType iExitType;
       
    33 	TBuf<64> iDesc;
       
    34     };
       
    35 
       
    36 class CProcessCreator : public CBase
       
    37 {
       
    38 public:
       
    39 	static TProcessCreatorResults StartProgram(const TDesC& aProgramName, 
       
    40 			const TDesC& aCommandLineArgs, TBool aWaitForCompletion=ETrue);
       
    41 	
       
    42 };
       
    43 
       
    44 #endif // __TE_PROCESSCREATOR_H__