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.
14 // Started by DWW, March 1997
15 // BAFL specialization of CActiveScheduler
19 #if !defined(__BASCHED_H__)
22 #if !defined(__e32std_h__)
26 #if !defined(__e32base_h__)
34 const TInt KErrExtended=(-1000);
35 const TInt KErrExtendedWithText=(-1001);
36 const TInt KLeaveWithoutAlert=(-1002);
37 const TInt KLeaveExit=(-1003);
49 class CBaErrorHandler;
51 class CBaActiveScheduler : public CActiveScheduler
58 IMPORT_C static void LeaveNoAlert();
59 public: // Internal to Symbian
60 IMPORT_C CBaActiveScheduler();
61 IMPORT_C ~CBaActiveScheduler();
62 IMPORT_C static void Exit();
63 IMPORT_C static void LeaveForAlert(TUid aComponent,TInt aErrorNumber);
64 IMPORT_C static void LeaveForInfoPrint(TUid aComponent,TInt aErrorNumber);
65 IMPORT_C static void LeaveForErrorHandler(const CBaErrorHandler *aHandler);
66 IMPORT_C static const SExtendedError& ExtendedError();
67 IMPORT_C static void DisplayExtendedError(TUid aComponent,TInt aErrorNumber);
68 IMPORT_C virtual void DisplayError(TInt aError) const;
69 public:// from CActiveScheduler
70 IMPORT_C void Error(TInt aError) const;
72 // reserved virtual function space
73 IMPORT_C virtual void Reserved_1();
74 IMPORT_C virtual void Reserved_2();
76 static void ExtendedLeave(TUid aComponent,TInt aErrorNumber,TBool aLeaveForInfoPrint);
78 SExtendedError iExtendedError;