Update contrib.
2 * Copyright (c) 2000 Nokia Corporation and/or its subsidiary(-ies).
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".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
21 #ifndef __CommonFramework_H
22 #define __CommonFramework_H
27 _LIT(KTxtEPOC32EX,"EXAMPLES");
28 _LIT(KTxtExampleCode,"Symbian OS Example Code");
29 _LIT(KFormatFailed,"failed: leave code=%d");
31 _LIT(KTxtPressAnyKey," [press any key]");
34 LOCAL_D CConsoleBase* console; // write all your messages to this
35 LOCAL_C void doExampleL(); // code this function for the real example
38 LOCAL_C void callExampleL(); // initialize with cleanup stack, then do example
40 GLDEF_C TInt E32Main() // main function called by E32
43 CTrapCleanup* cleanup=CTrapCleanup::New(); // get clean-up stack
44 TRAPD(error,callExampleL()); // more initialization, then do example
45 __ASSERT_ALWAYS(!error,User::Panic(KTxtEPOC32EX,error));
46 delete cleanup; // destroy clean-up stack
48 return 0; // and return
51 LOCAL_C void callExampleL() // initialize and call example code under cleanup stack
53 console=Console::NewL(KTxtExampleCode,TSize(KConsFullScreen,KConsFullScreen));
54 CleanupStack::PushL(console);
55 TRAPD(error,doExampleL()); // perform example function
57 console->Printf(KFormatFailed, error);
59 console->Printf(KTxtOK);
60 console->Printf(KTxtPressAnyKey);
61 console->Getch(); // get and ignore character
62 CleanupStack::PopAndDestroy(); // close console