os/ossrv/lowlevellibsandfws/apputils/inc/BASCHED.H
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/lowlevellibsandfws/apputils/inc/BASCHED.H	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,81 @@
     1.4 +// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +// Started by DWW, March 1997
    1.18 +// BAFL specialization of CActiveScheduler
    1.19 +// 
    1.20 +//
    1.21 +
    1.22 +#if !defined(__BASCHED_H__)
    1.23 +#define __BASCHED_H__
    1.24 +
    1.25 +#if !defined(__e32std_h__)
    1.26 +#include <e32std.h>
    1.27 +#endif
    1.28 +
    1.29 +#if !defined(__e32base_h__)
    1.30 +#include <e32base.h>
    1.31 +#endif
    1.32 +
    1.33 +/**
    1.34 +@publishedAll
    1.35 +@released
    1.36 +*/
    1.37 +const TInt KErrExtended=(-1000);
    1.38 +const TInt KErrExtendedWithText=(-1001);
    1.39 +const TInt KLeaveWithoutAlert=(-1002);
    1.40 +const TInt KLeaveExit=(-1003);
    1.41 +
    1.42 +/**
    1.43 +@publishedAll
    1.44 +*/
    1.45 +struct SExtendedError
    1.46 +	{
    1.47 +	TUid iComponent;
    1.48 +	TInt iErrorNumber;
    1.49 +	TBool iInformation;
    1.50 +	};
    1.51 +
    1.52 +class CBaErrorHandler;
    1.53 +
    1.54 +class CBaActiveScheduler : public CActiveScheduler
    1.55 +/**
    1.56 +@publishedAll
    1.57 +@released
    1.58 +*/
    1.59 +	{
    1.60 +public:
    1.61 +	IMPORT_C static void LeaveNoAlert();
    1.62 +public: // Internal to Symbian
    1.63 +	IMPORT_C CBaActiveScheduler();
    1.64 +	IMPORT_C ~CBaActiveScheduler();
    1.65 +	IMPORT_C static void Exit();
    1.66 +	IMPORT_C static void LeaveForAlert(TUid aComponent,TInt aErrorNumber);
    1.67 +	IMPORT_C static void LeaveForInfoPrint(TUid aComponent,TInt aErrorNumber);
    1.68 +	IMPORT_C static void LeaveForErrorHandler(const CBaErrorHandler *aHandler);
    1.69 +	IMPORT_C static const SExtendedError& ExtendedError();
    1.70 +	IMPORT_C static void DisplayExtendedError(TUid aComponent,TInt aErrorNumber);
    1.71 +	IMPORT_C virtual void DisplayError(TInt aError) const;
    1.72 +public:// from CActiveScheduler
    1.73 +	IMPORT_C void Error(TInt aError) const;
    1.74 +private:
    1.75 +// reserved virtual function space
    1.76 +	IMPORT_C virtual void Reserved_1();
    1.77 +	IMPORT_C virtual void Reserved_2();
    1.78 +// internal
    1.79 +	static void ExtendedLeave(TUid aComponent,TInt aErrorNumber,TBool aLeaveForInfoPrint);
    1.80 +protected:
    1.81 +	SExtendedError iExtendedError;
    1.82 +	};
    1.83 +
    1.84 +#endif