diff -r 000000000000 -r ba25891c3a9e installationservices/swi/test/testexes/testappinuse/HelloWorld_Main.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/installationservices/swi/test/testexes/testappinuse/HelloWorld_Main.cpp Thu Dec 17 08:51:10 2009 +0200 @@ -0,0 +1,69 @@ +/* +* Copyright (c) 2000-2009 Nokia Corporation and/or its subsidiary(-ies). +* All rights reserved. +* This component and the accompanying materials are made available +* under the terms of the License "Eclipse Public License v1.0" +* which accompanies this distribution, and is available +* at the URL "http://www.eclipse.org/legal/epl-v10.html". +* +* Initial Contributors: +* Nokia Corporation - initial contribution. +* +* Contributors: +* +* Description: +* HelloWorld +* The example is a simple application containing a single view with +* the text "Hello World !" drawn on it. +* The example includes code for displaying a very simple menu. +* This source file contains the single exported function required by +* all UI applications and the E32Dll function which is also required +* but is not used here. +* +*/ + + + +#include "HelloWorld.h" + + +// The entry point for the application code. It creates +// an instance of the CApaApplication derived +// class, CExampleApplication. +// + +#if defined(EKA2) + +#include +LOCAL_C CApaApplication* NewApplication() + { + return new CExampleApplication; + } + +GLDEF_C TInt E32Main() + { + return EikStart::RunApplication(NewApplication); + } + +#endif + +#if defined(__WINS__) && !defined(EKA2) +// This function is required by all Symbian OS DLLs. In this +// example, it does nothing. + +EXPORT_C CApaApplication* NewApplication() + { + return new CExampleApplication; + } + +GLDEF_C TInt E32Dll(TDllReason) + { + return KErrNone; + } + +EXPORT_C TInt WinsMain(TDesC* aCmdLine) + { + return EikStart::RunApplication(NewApplication, aCmdLine); + } + +#endif