Update contrib.
1 // Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
22 _LIT(KTxtEPOC32EX,"EPOC32EX");
23 _LIT(KTxtExampleCode,"E32 SDK Example Code");
24 _LIT(KFormatFailed,"failed: leave code=%d");
26 _LIT(KTxtPressAnyKey," [press any key]");
29 LOCAL_D CConsoleBase* console; // write all your messages to this
30 LOCAL_C void doExampleL(); // code this function for the real example
33 LOCAL_C void callExampleL(); // initialize with cleanup stack, then do example
35 GLDEF_C TInt E32Main() // main function called by E32
38 CTrapCleanup* cleanup=CTrapCleanup::New(); // get clean-up stack
39 TRAPD(error,callExampleL()); // more initialization, then do example
40 __ASSERT_ALWAYS(!error,User::Panic(KTxtEPOC32EX,error));
41 delete cleanup; // destroy clean-up stack
43 return 0; // and return
46 LOCAL_C void callExampleL() // initialize and call example code under cleanup stack
48 console=Console::NewL(KTxtExampleCode,TSize(KConsFullScreen,KConsFullScreen));
49 CleanupStack::PushL(console);
50 TRAPD(error,doExampleL()); // perform example function
52 console->Printf(KFormatFailed, error);
54 console->Printf(KTxtOK);
55 console->Printf(KTxtPressAnyKey);
56 console->Getch(); // get and ignore character
57 CleanupStack::PopAndDestroy(); // close console