localisation/apparchitecture/tef/TNonNative/TNNApp1.cpp
branchSymbian3
changeset 57 b8d18c84f71c
parent 6 c108117318cb
equal deleted inserted replaced
56:aa99f2208aad 57:b8d18c84f71c
     1 // Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
     1 // Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
     2 // All rights reserved.
     2 // All rights reserved.
     3 // This component and the accompanying materials are made available
     3 // This component and the accompanying materials are made available
     4 // under the terms of the License "Eclipse Public License v1.0"
     4 // under the terms of "Eclipse Public License v1.0"
     5 // which accompanies this distribution, and is available
     5 // which accompanies this distribution, and is available
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
     7 //
     7 //
     8 // Initial Contributors:
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
     9 // Nokia Corporation - initial contribution.
    11 // Contributors:
    11 // Contributors:
    12 //
    12 //
    13 // Description:
    13 // Description:
    14 //
    14 //
    15 
    15 
    16 
       
    17 
       
    18 /**
    16 /**
    19  @file
    17  @file
    20  @internalComponent - Internal Symbian test code  
    18  @internalComponent - Internal Symbian test code  
    21 */
    19 */
    22 
    20 
    23 
    21 
    24 #include <E32STD.H>
    22 #include <e32std.h>
    25 #include <E32BASE.H>
    23 #include <e32base.h>
    26 #include <E32KEYS.H>
    24 #include <e32keys.h>
    27 #include <GDI.H>
    25 #include <gdi.h>
    28 #include <W32STD.H>
    26 #include <w32std.h>
    29 #include <COEDEF.H>
    27 #include <coedef.h>
    30 #include <COEMAIN.H>
    28 #include <coemain.h>
    31 #include <COEAUI.H>
    29 #include <coeaui.h>
    32 #include <COECNTRL.H>
    30 #include <coecntrl.h>
    33 #include <APPARC.H>
    31 #include <apparc.h>
    34 #include <APGWGNAM.H>
    32 #include <apgwgnam.h>
    35 #include <APASERVERAPP.H>
    33 #include <apaserverapp.h>
    36 #include <EIKENV.H>
    34 #include <eikenv.h>
    37 #include <EIKAPP.H>
    35 #include <eikapp.h>
    38 #include <EIKDOC.H>
    36 #include <eikdoc.h>
    39 #include <EIKAPPUI.H>
    37 #include <eikappui.h>
    40 #include <EIKSTART.H>
    38 #include <eikstart.h>
    41 #include <EIKSERVERAPP.H>
    39 #include <eikserverapp.h>
    42 #include <UIKON.HRH>
    40 #include <uikon.hrh>
    43 #include "TNNAPP1.H"
    41 #include "TNNApp1.h"
    44 #include <appfwk_test.h>
    42 #include "appfwk_test.h"
    45 
    43 
    46 TTstTransactionType gTransactionType=ETransactionType_null;
    44 TTstTransactionType gTransactionType=ETransactionType_null;
    47 TBool gCallMadeToNewOverload_ProcessCommandParametersL=EFalse;
    45 TBool gCallMadeToNewOverload_ProcessCommandParametersL=EFalse;
    48 TInt gErrorWhenOpeningFile=KMinTInt;
    46 TInt gErrorWhenOpeningFile=KMinTInt;
    49 TBuf<50> gFileNameWithoutDriveOrPath;
    47 TBuf<50> gFileNameWithoutDriveOrPath;
   578 
   576 
   579 GLDEF_C TInt E32Main()
   577 GLDEF_C TInt E32Main()
   580 	{
   578 	{
   581 	return EikStart::RunApplication(NewApplication);
   579 	return EikStart::RunApplication(NewApplication);
   582 	}
   580 	}
       
   581